]> git.mxchange.org Git - friendica.git/blob - view/theme/quattro/quattro.less
quattro: item acl popup panel, max height to notifications menu, style comment previe...
[friendica.git] / view / theme / quattro / quattro.less
1 // Quattro Theme LESS file
2
3 /* global */
4 body {
5         font-family: Liberation Sans,helvetica,arial,clean,sans-serif;
6         font-size: 11px;
7         background-color: @BodyBackground;
8         color: @BodyColor;
9         margin: 50px 0px 0px 0px;
10         display:table;
11 }
12 h4 { font-size: 1.1em }
13
14 .shadow(@x: 0px, @y: 5px){
15    -webkit-box-shadow:@x @y 10px rgba(0, 0, 0, 0.7);
16    -moz-box-shadow:@x @y 10px rgba(0, 0, 0, 0.7);
17    box-shadow:@x @y 10px rgba(0, 0, 0, 0.7);
18 }
19
20 .rounded(@tr: 5px, @tl: 5px, @bl: 5px, @br: 5px){
21         -moz-border-radius: @arguments;
22         -webkit-border-radius: @arguments;
23         border-radius: @arguments;
24 }
25 .roundbottom (@radius: 5px){ .rounded(0, 0, @radius, @radius); }
26 .roundtop (@radius: 5px){ .rounded(@radius, @radius, 0, 0); }
27
28 .opaque(@v: 0.5){
29         opacity: @v;
30         -webkit-transition: all 0.2s ease-in-out;
31         -moz-transition: all 0.2s ease-in-out;
32         -o-transition: all 0.2s ease-in-out;
33         -ms-transition: all 0.2s ease-in-out;
34         transition: all 0.2s ease-in-out;
35 }
36
37
38 a, a:link { color: @Link; text-decoration: none; }
39 a:visited { color: @LinkVisited; text-decoration: none; }
40 a:hover {color: @LinkHover; text-decoration: underline; }
41
42 .left { float: left; }
43 .right { float: right; }
44 .hidden { display: none; }
45 .clear { clear: both; }
46
47 code {
48         font-family: Courier, monospace;
49         white-space: pre;
50         display: block;
51         overflow: auto;
52         border: 1px solid #444;
53         background: #EEE;
54         color: #444;
55         padding: 10px;
56         margin-top: 20px; 
57 }
58
59 #panel {
60         position: absolute;
61         width: 10em;
62         background: @MenuBg;
63         color: @Menu;
64         margin: 0px;
65         padding: 1em;
66         list-style: none;
67         border: 3px solid @MenuBorder;
68         z-index: 100000;
69         
70         .shadow();      
71 }
72
73 /* tool */
74
75 .tool {
76         height: auto; overflow: auto;
77         .label { float: left;}
78         .action { float: right; }
79 }
80
81
82
83
84 /* popup notifications */
85 div.jGrowl div.notice {
86         background: @NoticeBackgroundColor url("../../../images/icons/48/notice.png") no-repeat 5px center;
87         color:  @NoticeColor;
88         padding-left: 58px;
89 }
90 div.jGrowl div.info {
91         background: @InfoBackgroundColor url("../../../images/icons/48/info.png") no-repeat 5px center;
92         color:  @InfoColor;
93         padding-left: 58px;
94 }
95
96
97
98 /* header */
99 header {
100         position: fixed; left: 43%; right: 43%; top: 0px;
101         margin: 0px; padding: 0px;
102         /*width: 100%; height: 12px; */
103         z-index: 110;
104         color: @Grey1;
105         #site-location {
106                 display: none;
107         }
108         
109         #banner {
110                 overflow: hidden;
111             text-align: center;
112                 width: 100%;
113                 a, a:active, a:visited, a:link, a:hover { color: @Grey1; text-decoration: none; outline: none; vertical-align: bottom; }
114                 #logo-img { height: 22px; margin-top:5px;}
115                 #logo-text { font-size: 22px }
116         }
117 }
118 /* nav */
119 nav { 
120         width: 100%; height: 32px;
121         position: fixed; left: 0px; top: 0px;
122         padding: 0px;
123         background-color: @NavbarBackground;
124         color: @Grey1;
125         z-index: 100;
126         .shadow(0px, 0px);
127
128                 a, a:active, a:visited, a:link, a:hover { color: @Banner; text-decoration: none; outline: none;  }
129
130                 ul {
131                         margin: 0px;
132                         padding: 0px 20px;
133                         li { 
134                                 list-style: none; 
135                                 margin: 0px; padding: 0px;
136                                 float: left;
137                                 .menu-popup{ left: 0px; right: auto; }
138                         }
139                         
140                 }
141
142                 .nav-menu-icon {
143                         position: relative;
144                         height: 22px;
145                         padding: 5px;
146                         margin: 0px 10px;
147                         .roundtop();
148                         
149                         &.selected {
150                                 background-color: @NavbarSelectedBg;
151                         }
152                         
153                                 img { width: 22px; height: 22px; }
154                                 .nav-notify { top: 3px; }
155                 }
156
157                 .nav-menu {
158                         position: relative;
159                         height: 16px;
160                         padding: 5px;
161                         margin: 3px 15px 0px;
162                         font-size: 14px;
163                         border-bottom: 3px solid @NavbarBackground;
164                         &.selected {
165                                 border-bottom: 3px solid @NavbarSelectedBorder;
166                         }
167                         
168                 }
169
170                 .nav-notify {
171                         display: none;
172                         position: absolute;
173                         background-color: @NavbarNotifBg;
174                         .rounded();
175                         font-size: 10px;
176                         padding: 1px 3px;
177                         top: 0px;
178                         right: -10px;
179                         min-width: 15px;
180                         text-align: right;
181                         
182                                 &.show{ display: block; }
183                 }
184                 
185                 
186                 #nav-help-link,
187                 #nav-search-link,
188                 #nav-directory-link,
189                 #nav-apps-link,
190                 #nav-site-linkmenu { 
191                         float: right;
192                         .menu-popup{ right: 0px; left: auto; }
193                 }
194         
195                 #nav-notifications-linkmenu.on .icon.s22.notify,
196                 #nav-notifications-linkmenu.selected .icon.s22.notify { background-image: url("../../../images/icons/22/notify_on.png") }
197                 #nav-apps-link.selected { background-color: @NavbarSelectedBg; }
198 }
199
200
201 ul.menu-popup {
202         position: absolute;
203         display: none;
204         width: 10em;
205         background: @MenuBg;
206         color: @Menu;
207         margin: 0px;
208         padding: 0px;
209         list-style: none;
210         border: 3px solid @MenuBorder;
211         z-index: 100000;
212         
213         .shadow();
214         
215                 a { display: block; color: @MenuItem; padding: 5px 10px; text-decoration: none;}
216                 a:hover { background-color: @MenuItemHoverBg; }
217                 .menu-sep  { border-top: 1px solid @MenuItemSeparator; }
218                 li { float: none;  overflow: auto; height: auto; display: block; }
219                 li img { float: left; width: 16px; height: 16px; padding-right: 5px;}
220                 .empty {
221                         padding: 5px;
222                         text-align: center;
223                         color: @MenuEmpty;
224                 }
225                 
226 }
227
228 /* autocomplete popup */
229 .acpopup {
230         max-height:150px;
231         background-color:@MenuBg;
232         color: @Menu;
233         border:1px solid #MenuBorder;
234         overflow:auto;
235         z-index:100000;
236         .shadow();
237 }
238 .acpopupitem {
239         color: @MenuItem; padding: 4px;
240         clear:left;
241         img {
242                 float: left;
243                 margin-right: 4px;
244         }
245         &.selected{
246                 background-color: @MenuItemHoverBg;
247         }
248 }
249
250
251 #nav-notifications-menu {
252         width: 400px; max-height: 550px;
253         overflow: auto;
254         img { float: left; margin-right: 5px; }
255         .contactname { font-weight: bold; }
256         .notif-when { font-size: 10px; color: @MenuItemDetail; display: block; }
257 }
258
259
260
261
262 /* aside */
263 aside { 
264         display: table-cell;
265         vertical-align: top;
266         width: 200px;
267         padding:0px 10px 0px 20px;
268         border-right: 1px solid @AsideBorder;
269
270         .vcard {
271                 .fn { font-size: 16px; font-weight: bold; margin-bottom: 5px; }
272                 .title { margin-bottom: 5px; }
273                 dl { height: auto; overflow: auto; }
274                 dt {float: left; margin-left: 0px; width: 35%; text-align: right; color: @VCardLabelColor; }
275                 dd {float: left; margin-left: 4px; width: 60%;}
276         
277         }
278
279         #profile-extra-links {
280                 ul { padding: 0px; margin: 0px; }
281                 li { padding: 0px; margin: 0px; list-style: none; }
282         }
283
284         #dfrn-request-link {
285                 display: block;
286                 .rounded();
287                 color: @AsideConnect;
288                 background: @AsideConnectBg url('../../../images/connect-bg.png') no-repeat left center;
289                 font-weight: bold;
290                 text-transform:uppercase;
291                 padding: 4px 2px 2px 35px;
292                 
293                 &:hover { text-decoration: none; background-color: @AsideConnectHoverBg; }
294         }
295
296         #profiles-menu { width: 20em; }
297
298
299 }
300
301 #contact-block {
302         overflow: auto; height: auto;
303         .contact-block-h4 { float: left; margin: 5px 0px; }
304         .allcontact-link { float: right; margin: 5px 0px; }
305         .contact-block-content {
306                 clear: both;
307                 overflow: auto; height: auto;
308         }
309         .contact-block-link {
310                 float: left;
311                 margin: 0px 2px 2px 0px;
312                 img { widht: 48px; height: 58px; }
313         }
314 }
315
316
317 /* widget */
318 .widget {
319         margin-bottom: 2em;
320         
321         h3 { padding: 0px; margin: 2px;}
322         .action { .opaque(0.1); }
323         input.action { .opaque(0.5); }
324         &:hover .title .action { .opaque(1); }
325         .tool:hover .action { .opaque(1); }
326         .tool:hover .action.ticked { .opaque(1); }
327
328         ul { padding: 0px;}
329         ul li {padding-left: 16px; min-height: 16px; list-style: none; }
330         
331         .tool.selected {
332                 background: url('../../../images/selected.png') no-repeat left center;
333         }
334         
335         /*.action .s10 { width: 10px; overflow: hidden; padding: 0px;}
336         .action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/
337         
338 }
339
340 /* widget: search */
341 #add-search-popup {
342         width: 200px;
343         top: 18px;
344 }
345
346
347 /* section */
348 section { 
349         display: table-cell;
350         vertical-align: top;
351         width: 800px;
352         padding:0px 20px 0px 10px;
353 }
354
355 /* wall item */
356 .tread-wrapper { 
357         background-color: @ThreadBackgroundColor;
358         position: relative;
359         padding: 10px;
360         margin-bottom: 20px;
361         width: 780px;
362 }
363 .wall-item-decor { position: absolute; left: 790px; top: -10px;  width: 16px;}
364 .unstarred { display: none; }
365
366 .wall-item-container {
367         display: table;
368         width: 780px;
369         
370         .wall-item-item,
371         .wall-item-bottom { display: table-row; }
372         
373         .wall-item-bottom { .opaque(0.5); }
374         &:hover .wall-item-bottom { .opaque(1); }
375         .wall-item-info {
376                 display: table-cell;
377                 vertical-align: top;
378                 text-align: left;
379                 width: 60px;
380                 
381         } 
382         .wall-item-location {
383                 word-wrap: break-word;
384                 width: 50px;
385         }
386         .wall-item-content {
387                 display: table-cell;
388                 font-size: 12px;
389                 max-width: 720px;
390                 word-wrap: break-word;
391         }
392         .wall-item-content img { max-width: 710px; }
393         .wall-item-links,
394         .wall-item-actions { 
395                 display: table-cell; 
396                 vertical-align: middle; 
397                 
398                 .icon {
399                         .opaque(0.5);
400                 }
401                 .icon:hover  {
402                         .opaque(1.0);
403                 }               
404         }
405         
406         .wall-item-ago { padding-right: 40px; }
407         .wall-item-name { font-weight: bold; }
408         
409         .wall-item-actions-author { float: left; width: 20em; margin-top: 0.5em; }
410         .wall-item-actions-social { float: left; margin-top: 0.5em;
411                 a { margin-right: 3em; }
412          }
413         .wall-item-actions-tools { float: right; width: 15%; 
414                 a { float: right; }
415                 input { float: right; }
416         }
417         
418 }
419
420
421 .wall-item-container.comment {
422         /*margin-top: 50px;*/
423         .contact-photo { width: 32px; height: 32px; margin-left: 16px;
424                 /*background: url(../../../images/icons/22/user.png) no-repeat center center;*/
425         }       
426         .contact-photo-menu-button {
427                 top: 15px !important;
428                 left: 15px !important;
429         }
430         .wall-item-links { padding-left: 12px; }
431 }
432
433 .wall-item-comment-wrapper {
434         margin: 30px 2em 2em 60px;
435         .comment-edit-photo { display: none; }
436         textarea {      
437                 height: 1em; width: 100%; font-size: 10px;
438                 color: @CommentBoxEmptyColor;
439                 border: 1px solid @CommentBoxEmptyBorderColor;
440                 padding:0.3em;
441         }
442         .comment-edit-text-full {
443                 font-size: 14px;
444                 height: 4em;
445                 color: @CommentBoxFullColor;
446                 border: 1px solid @CommentBoxFullBorderColor;
447         }
448 }
449
450 .comment-edit-preview {
451         width: 710px;
452         border: 1px solid @Grey5;
453         margin-top: 10px;
454         
455         .contact-photo { width: 32px; height: 32px; margin-left: 16px;
456                 /*background: url(../../../images/icons/22/user.png) no-repeat center center;*/
457         }       
458         .contact-photo-menu-button {
459                 top: 15px !important;
460                 left: 15px !important;
461         }
462         .wall-item-links { padding-left: 12px; }
463
464         .wall-item-container { width: 700px; }
465         .tread-wrapper { width: 700px; padding: 0; margin: 10px 0;}
466
467
468 }
469
470
471
472 .wall-item-tags { padding-top: 5px; }
473 .tag {
474         background: url("../../../images/tag_b.png") no-repeat center left;
475         color: @TagColor;
476         padding-left: 3px;
477         a {
478                 padding-right: 8px;
479                 background: url("../../../images/tag.png") no-repeat center right;
480                 color: @TagColor;
481         }
482 }
483
484 .wwto { 
485         position: absolute !important; 
486         width: 25px; height: 25px; 
487     background: #FFFFFF;
488     border: 2px solid @Metalic3;
489     height: 25px;
490     width: 25px;
491     overflow: hidden;
492     padding: 1px;
493     position: absolute !important;
494     top: 40px;
495     left: 30px;
496     
497     .shadow(0px, 0px)
498 }
499 .wwto .contact-photo { width: 25px; height: 25px; }
500
501 /* contacts menu */
502 .contact-photo-wrapper { position: relative; }
503 .contact-photo { 
504         width: 48px; height: 48px;
505         img { width: 48px; height: 48px; }
506         overflow: hidden;
507         display: block;
508  }              
509 .contact-photo-menu-button {
510         display: none;
511         position: absolute;
512         left: -2px;
513         top: 31px;
514 }
515
516 .contact-wrapper {
517         float: left;
518         width: 90px;
519         height: 90px;
520         .contact-photo { 
521                 width: 80px; height: 80px;
522                 img { width: 80px; height: 80px; }
523         }
524         .contact-photo-menu-button {
525                 left: 0px;
526                 top: 63px;
527         }       
528 }
529 .directory-item {
530         float: left;
531         width: 200px;
532         height: 200px;
533         .contact-photo { 
534                 width: 175px; height: 175px;
535                 img { width: 175px; height: 175px; }
536         }
537 }
538 .contact-name { text-align: center; font-weight: bold; }
539 .contact-details { color: @Grey3;}
540
541 /* editor */
542 .jothidden { display: none; }
543 #jot {
544
545         width: 100%;
546         margin: 0px 2em 20px 0px;
547         
548         
549         .profile-jot-text {
550                 height: 1em; width: 99%; font-size: 10px;
551                 color: @CommentBoxEmptyColor;
552                 border: 1px solid @CommentBoxEmptyBorderColor;
553                 padding:0.3em;
554         }
555
556         #jot-tools {
557                 margin: 0px; padding: 0px;
558                 height: 40px; overflow: none;
559                 width: 800px;
560                 background-color: @JotToolsBackgroundColor;
561                 border-bottom: 2px solid @JotToolsBorderColor;
562                 li {
563                         list-style: none;
564                         float: left;
565                         width: 80px;
566                         height: 40px;
567                         border-bottom: 2px solid @JotToolsBorderColor;
568                         a {
569                                 display: block;
570                                 color: @JotToolsText;
571                                 width: 100%;
572                                 height:40px;
573                                 text-align: center;
574                                 line-height: 40px;
575                                 overflow: hidden;
576                         }
577                 }
578                 li:hover {
579                         background-color: @JotToolsOverBackgroundColor;
580                         border-bottom: 2px solid @JotToolsOverBorderColor;
581                 }
582                 li.perms {
583                         float: right;
584                         width: 40px;
585                         a.unlock {
586                                 width: 30px;
587                                 border-left: 10px solid @JotPermissionUnlockBackgroundColor;
588                                 background-color: @JotPermissionUnlockBackgroundColor;
589                         }
590                         a.lock {
591                                 width: 30px;
592                                 border-left: 10px solid @JotPermissionLockBackgroundColor;
593                                 background-color: @JotPermissionLockBackgroundColor;
594                         }
595                         
596                 }
597                 li.submit {
598                         float: right;
599                         background-color: @JotSubmitBackgroundColor;
600                         border-bottom: 2px solid @JotSubmitBackgroundColor;
601                         border-right: 1px solid @Grey4;
602                         border-left: 1px solid @Grey4;
603                         input {
604                                 border: 0px; margin: 0px; padding: 0px;
605                                 background-color: @JotSubmitBackgroundColor;
606                                 color: @JotSubmitText;
607                                 width: 80px; height: 40px;
608                                 line-height: 40px;
609                         }
610                         input:hover {
611                                 background-color: @JotSubmitOverBackgroundColor;
612                                 color: @JotSubmitOverText;
613                         }
614                 }
615                 li.loading {
616                         float: right;
617                         background-color: @JotLoadingBackgroundColor;
618                         width:  20px;
619                         vertical-align: center;
620                         text-align: center;
621                         img { margin-top: 10px; }
622                         border-top: 2px solid @JotToolsBorderColor;
623                         height: 38px;
624                 }
625         }
626
627         #jot-title {
628                 border: 0px;
629                 margin: 0px;
630                 height: 20px;
631                 width: 700px;
632                 font-weight: bold;
633                 border: 1px solid @BodyBackground;
634
635                 &:-webkit-input-placeholder {
636                         font-weight: normal;
637                 }
638
639                 &:-moz-placeholder {
640                         font-weight: normal;
641                 }               
642         
643                 &:hover { border: 1px solid @CommentBoxEmptyBorderColor }
644                 &:focus { border: 1px solid @CommentBoxEmptyBorderColor }
645         }
646         
647         #character-counter {
648                 width: 80px;
649                 float: right;
650                 text-align: right;
651                 height: 20px;
652                 line-height: 20px;
653                 padding-right: 20px;
654         }
655
656 }
657
658
659 /** buttons **/
660 /*input[type="submit"] {
661         border: 0px;
662     background-color: @ButtonBackgroundColor;
663     color: @ButtonColor;
664     padding: 0px 10px;
665         .rounded(5px);
666     height: 18px;
667 }*/
668
669
670 /** acl **/
671 #photo-edit-perms-select,
672 #photos-upload-permissions-wrapper,
673 #profile-jot-acl-wrapper{
674         display:block!important;
675 }
676
677
678
679 #acl-wrapper {
680         width: 690px;
681         float:left;
682 }
683 #acl-search {
684         float:right;
685         background: #ffffff url("../../../images/search_18.png") no-repeat right center;
686         padding-right:20px;
687 }
688 #acl-showall {
689         float: left;
690         display: block;
691         width: auto;
692         height: 18px;
693         background-color: #cccccc;
694         background-image: url("../../../images/show_all_off.png");
695         background-position: 7px 7px;
696         background-repeat: no-repeat;
697         padding: 7px 5px 0px 30px;
698         color: #999999;
699         .rounded(5px);
700 }
701 #acl-showall.selected {
702         color: #000000;
703         background-color: #ff9900;
704         background-image: url("../../../images/show_all_on.png");
705 }
706
707 #acl-list {
708         height: 210px;
709         border: 1px solid #cccccc;
710         clear: both;
711         margin-top: 30px;
712         overflow: auto;
713 }
714 #acl-list-content {
715         
716 }
717 .acl-list-item {
718         display: block;
719         width: 150px;
720         height: 30px;
721         border: 1px solid #cccccc;
722         margin: 5px;
723         float: left;
724 }
725 .acl-list-item img{
726         width:22px;
727         height: 22px;
728         float: left;
729         margin: 4px;
730 }
731 .acl-list-item p { height: 12px; font-size: 10px; margin: 0px; padding: 2px 0px 1px; overflow: hidden;}
732 .acl-list-item a { 
733         font-size: 8px;
734         display: block;
735         width: 40px;
736         height: 10px;
737         float: left;
738         color: #999999;
739         background-color: #cccccc;
740         background-position: 3px 3px;
741         background-repeat: no-repeat;
742         margin-right: 5px;
743         -webkit-border-radius: 2px ;
744         -moz-border-radius: 2px;
745         border-radius: 2px;
746         padding-left: 15px;
747 }
748 #acl-wrapper a:hover {
749         text-decoration: none;
750         color:#000000;
751 }
752 .acl-button-show { background-image: url("../../../images/show_off.png"); }
753 .acl-button-hide { background-image: url("../../../images/hide_off.png"); }
754
755 .acl-button-show.selected {
756         color: #000000;
757         background-color: #9ade00;
758         background-image: url("../../../images/show_on.png");
759 }
760 .acl-button-hide.selected {
761         color: #000000;
762         background-color: #ff4141;
763         background-image: url("../../../images/hide_on.png");
764 }
765 .acl-list-item.groupshow { border-color: #9ade00; }
766 .acl-list-item.grouphide { border-color: #ff4141; }
767 /** /acl **/
768
769 /** tab buttons **/
770 ul.tabs {
771     list-style-type: none;
772     padding-bottom: 10px;
773
774     li {
775         float: left;
776         margin-left: 20px;
777         
778         .active {
779                         border-bottom: 1px solid @LinkVisited;
780         }
781     }
782     
783 }
784
785
786 /**
787  * Form fields
788  */
789 .field {
790         margin-bottom: 10px;
791         padding-bottom: 10px;
792         overflow: auto;
793         width: 100%;
794
795
796         label {
797                 float: left;
798                 width: 200px;
799         }
800
801         input,
802         textarea {
803                 width: 400px;
804         }
805         textarea { height: 100px; }
806         .field_help {
807                 display: block;
808                 margin-left: 200px;
809                 color: #666666;
810                 
811         }
812
813
814         .onoff {
815                 float: left;
816                 width: 80px;
817         }
818         .onoff a {
819                 display: block;
820                 border:1px solid #666666;
821                 background-image:url("../../../images/onoff.jpg");
822                 background-repeat: no-repeat;
823                 padding: 4px 2px 2px 2px;
824                 height: 16px;
825                 text-decoration: none;
826         }
827         .onoff .off {
828                 border-color:#666666;
829                 padding-left: 40px;
830                 background-position: left center;
831                 background-color: #cccccc;
832                 color: #666666;
833                 text-align: right;
834         }
835         .onoff .on {
836                 border-color:#204A87;
837                 padding-right: 40px;
838                 background-position: right center;
839                 background-color: #D7E3F1;
840                 color: #204A87;
841                 text-align: left;
842         }
843         .hidden { display: none!important; }
844
845         &.radio .field_help { margin-left: 0px; }
846 }
847
848 #profile-edit-links li {
849         list-style: none;
850 }
851
852 /* oauth */
853 .oauthapp {
854         height: auto; overflow: auto;
855         border-bottom: 2px solid #cccccc;
856         padding-bottom: 1em;
857         margin-bottom: 1em;     
858 }
859 .oauthapp img {
860         float: left;
861         width: 48px; height: 48px;
862         margin: 10px;
863 }
864 .oauthapp img.noicon {
865         background-image: url("../../../images/icons/48/plugin.png");
866         background-position: center center;
867         background-repeat: no-repeat;
868 }
869 .oauthapp a {
870         float: left;
871 }
872
873 /* contacts */
874 .contact-entry-wrapper {
875         width: 50px; float: left;
876 }
877
878 /* photo */
879 .lframe {
880         float: left;
881         margin: 0px 10px 10px 0px;
882 }
883
884
885 /* page footer */
886 footer { height: 100px; display: table-row; }