| Left: | ||
| Right: |
| LEFT | RIGHT |
|---|---|
| 1 body | 1 body |
| 2 { | 2 { |
| 3 min-width: 250px; | 3 min-width: 250px; |
| 4 margin: 0px; | 4 margin: 0px; |
| 5 font-family: Segoe UI, Arial, sans-serif; | 5 font-family: Segoe UI, Arial, sans-serif; |
| 6 font-size: 13px; | 6 font-size: 13px; |
| 7 color: #545454; | 7 color: #545454; |
| 8 background-color: #f8f6f2; | 8 background-color: #f8f6f2; |
| 9 background-image: url(background.png); | 9 background-image: url(background.png); |
| 10 } | 10 } |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 109 footer | 109 footer |
| 110 { | 110 { |
| 111 cursor: pointer; | 111 cursor: pointer; |
| 112 padding: 10px 35px; | 112 padding: 10px 35px; |
| 113 border-top: 1px solid #e1ddd8; | 113 border-top: 1px solid #e1ddd8; |
| 114 background-image: url(background-main.png); | 114 background-image: url(background-main.png); |
| 115 } | 115 } |
| 116 | 116 |
| 117 footer:hover | 117 footer:hover |
| 118 { | 118 { |
| 119 background-image: url(background-main-hover.png); | 119 background: -moz-linear-gradient(top, rgba(70, 50, 0, 0.1), rgba(70, 50, 0, 0. 1)), |
|
Wladimir Palant
2013/12/03 12:55:43
Are we seriously changing the background on hover?
Felix Dahlke
2013/12/04 12:30:07
I thought the same to be honest. It's hard to judg
Thomas Greiner
2013/12/10 10:09:29
Are we talking about performance, extension size i
sven
2013/12/11 11:00:27
IMHO it's very unusual and insufficient only under
Felix Dahlke
2013/12/11 11:11:13
Design, isn't that obvious?
On 2013/12/11 11:00:2
Wladimir Palant
2013/12/11 11:20:26
Apparently, the idea is simply to make the backgro
Felix Dahlke
2013/12/11 11:30:57
Just saw the screen cast, looks fine design-wise I
Wladimir Palant
2013/12/11 11:46:19
It isn't quite solid, it rather has a bit of struc
Thomas Greiner
2013/12/11 13:15:24
Done.
| |
| 120 url(background-main.png); | |
| 121 background: -webkit-linear-gradient(top, rgba(70, 50, 0, 0.1), rgba(70, 50, 0, 0.1)), | |
| 122 url(background-main.png); | |
| 123 background: linear-gradient(top, rgba(70, 50, 0, 0.1), rgba(70, 50, 0, 0.1)), | |
|
Wladimir Palant
2013/12/17 14:11:14
The standardized linear gradient syntax is actuall
| |
| 124 url(background-main.png); | |
| 120 } | 125 } |
| 121 | 126 |
| 122 footer .icon | 127 footer .icon |
| 123 { | 128 { |
| 124 background-position: -50px -65px; | 129 background-position: -50px -65px; |
| 125 } | 130 } |
| 126 | 131 |
| 127 ul | 132 ul |
| 128 { | 133 { |
| 129 margin: 0px; | 134 margin: 0px; |
| (...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 319 | 324 |
| 320 .checkbox[aria-checked="false"]:hover | 325 .checkbox[aria-checked="false"]:hover |
| 321 { | 326 { |
| 322 background-position: -34px -49px; | 327 background-position: -34px -49px; |
| 323 } | 328 } |
| 324 | 329 |
| 325 label | 330 label |
| 326 { | 331 { |
| 327 vertical-align: middle; | 332 vertical-align: middle; |
| 328 } | 333 } |
| LEFT | RIGHT |