| OLD | NEW |
| 1 body { | 1 body { |
| 2 font-size: 100%; | 2 font-size: 100%; |
| 3 -webkit-user-select: none; | 3 -webkit-user-select: none; |
| 4 } | 4 } |
| 5 | 5 |
| 6 #settings-title { | 6 #settings-title { |
| 7 -webkit-padding-end: 24px; | 7 -webkit-padding-end: 24px; |
| 8 padding-top: 1em; | 8 padding-top: 1em; |
| 9 padding-bottom: 1em; | 9 padding-bottom: 1em; |
| 10 text-align: end; | 10 text-align: end; |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 -webkit-gradient(linear, | 77 -webkit-gradient(linear, |
| 78 left top, | 78 left top, |
| 79 right top, | 79 right top, |
| 80 from(#eaeef3), | 80 from(#eaeef3), |
| 81 color-stop(0.97, #eaeef3), | 81 color-stop(0.97, #eaeef3), |
| 82 to(#d3d7db)); | 82 to(#d3d7db)); |
| 83 -webkit-border-end: 1px solid #c6c9ce; | 83 -webkit-border-end: 1px solid #c6c9ce; |
| 84 cursor: pointer; | 84 cursor: pointer; |
| 85 position: relative; | 85 position: relative; |
| 86 width: 250px; | 86 width: 250px; |
| 87 z-index: 2; |
| 87 } | 88 } |
| 88 | 89 |
| 89 html[dir='rtl'] #navbar-container { | 90 html[dir='rtl'] #navbar-container { |
| 90 background: -webkit-gradient(linear, | 91 background: -webkit-gradient(linear, |
| 91 left top, | 92 left top, |
| 92 left bottom, | 93 left bottom, |
| 93 from(rgba(255, 255, 255, 0)), | 94 from(rgba(255, 255, 255, 0)), |
| 94 color-stop(0.7, rgba(255, 255, 255, 0)), | 95 color-stop(0.7, rgba(255, 255, 255, 0)), |
| 95 to(white)), | 96 to(white)), |
| 96 -webkit-gradient(linear, | 97 -webkit-gradient(linear, |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 from(white), | 136 from(white), |
| 136 to(#d6def3)); | 137 to(#d6def3)); |
| 137 } | 138 } |
| 138 | 139 |
| 139 .navbar-item-normal { | 140 .navbar-item-normal { |
| 140 background-color: #dfdfdf; | 141 background-color: #dfdfdf; |
| 141 } | 142 } |
| 142 | 143 |
| 143 #mainview { | 144 #mainview { |
| 144 -webkit-box-align: stretch; | 145 -webkit-box-align: stretch; |
| 145 width: 600px; | 146 padding: 0 0 0 251px; |
| 146 padding: 0 24px 24px; | 147 margin: 0; |
| 147 position: relative; | 148 position: absolute; |
| 149 left: 0; |
| 150 right: 0; |
| 151 top: 0; |
| 152 bottom: 0; |
| 153 z-index: 1; |
| 154 } |
| 155 |
| 156 #mainview-content { |
| 157 width: 550px; |
| 158 padding: 0 24px; |
| 159 } |
| 160 |
| 161 #managed-prefs-banner { |
| 162 background: -webkit-gradient(linear, |
| 163 left top, |
| 164 left bottom, |
| 165 from(#fff2b7), |
| 166 color-stop(0.97, #fae691), |
| 167 to(#878787)); |
| 168 height: 31px; |
| 169 width: 100%; |
| 170 } |
| 171 |
| 172 #managed-prefs-banner, span { |
| 173 margin: 0; |
| 174 padding: 0; |
| 175 vertical-align: middle; |
| 176 } |
| 177 |
| 178 #managed-prefs-icon { |
| 179 background-image: url("chrome://theme/IDR_WARNING"); |
| 180 background-repeat: no-repeat; |
| 181 background-position:center; |
| 182 padding: 5px; |
| 183 width: 24px; |
| 184 height: 21px; |
| 185 display: inline-block; |
| 148 } | 186 } |
| 149 | 187 |
| 150 .page > h1 { | 188 .page > h1 { |
| 151 -webkit-padding-end: 24px; | 189 -webkit-padding-end: 24px; |
| 152 padding-top: 1em; | 190 padding-top: 1em; |
| 153 padding-bottom: 1em; | 191 padding-bottom: 1em; |
| 154 border-bottom: 1px solid #eeeeee; | 192 border-bottom: 1px solid #eeeeee; |
| 155 -webkit-padding-start: 0; | 193 -webkit-padding-start: 0; |
| 156 font-size: 125%; | 194 font-size: 125%; |
| 157 color: #54637f; | 195 color: #54637f; |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 242 -webkit-box-flex: 1; | 280 -webkit-box-flex: 1; |
| 243 } | 281 } |
| 244 | 282 |
| 245 .left-side-table > :last-child { | 283 .left-side-table > :last-child { |
| 246 -webkit-padding-start: 20px; | 284 -webkit-padding-start: 20px; |
| 247 } | 285 } |
| 248 | 286 |
| 249 .left-side-table > :last-child button { | 287 .left-side-table > :last-child button { |
| 250 width: 100%; | 288 width: 100%; |
| 251 } | 289 } |
| OLD | NEW |