| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> | 3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * | 8 * |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 } | 53 } |
| 54 | 54 |
| 55 label.dimmed:hover input { | 55 label.dimmed:hover input { |
| 56 box-shadow: none; | 56 box-shadow: none; |
| 57 } | 57 } |
| 58 | 58 |
| 59 fieldset[disabled] label:hover input { | 59 fieldset[disabled] label:hover input { |
| 60 box-shadow: none; | 60 box-shadow: none; |
| 61 } | 61 } |
| 62 | 62 |
| 63 .fill { | 63 body /deep/ .fill { |
| 64 position: absolute; | 64 position: absolute; |
| 65 top: 0; | 65 top: 0; |
| 66 left: 0; | 66 left: 0; |
| 67 right: 0; | 67 right: 0; |
| 68 bottom: 0; | 68 bottom: 0; |
| 69 } | 69 } |
| 70 | 70 |
| 71 .view { | 71 body /deep/ .view { |
| 72 position: relative; | 72 position: relative; |
| 73 flex: auto; | 73 flex: auto; |
| 74 } | 74 } |
| 75 | 75 |
| 76 .hbox { | 76 body /deep/ .hbox { |
| 77 display: flex; | 77 display: flex; |
| 78 flex-direction: row !important; | 78 flex-direction: row !important; |
| 79 position: relative; | 79 position: relative; |
| 80 } | 80 } |
| 81 | 81 |
| 82 .vbox { | 82 body /deep/ .vbox { |
| 83 display: flex; | 83 display: flex; |
| 84 flex-direction: column !important; | 84 flex-direction: column !important; |
| 85 position: relative; | 85 position: relative; |
| 86 } | 86 } |
| 87 | 87 |
| 88 .flex-auto { | 88 body /deep/ .flex-auto { |
| 89 flex: auto; | 89 flex: auto; |
| 90 } | 90 } |
| 91 | 91 |
| 92 .inline-block { | 92 body /deep/ .inline-block { |
| 93 display: inline-block; | 93 display: inline-block; |
| 94 } | 94 } |
| 95 | 95 |
| 96 .white-background { | 96 body /deep/ .white-background { |
| 97 background-color: white; | 97 background-color: white; |
| 98 } | 98 } |
| 99 | 99 |
| 100 .overflow-hidden { | 100 body /deep/ .overflow-hidden { |
| 101 overflow: hidden; | 101 overflow: hidden; |
| 102 } | 102 } |
| 103 | 103 |
| 104 .nowrap, | 104 .nowrap, |
| 105 .nowrap-below, | 105 .nowrap-below, |
| 106 .nowrap-below div, | 106 .nowrap-below div, |
| 107 .nowrap-below span { | 107 .nowrap-below span { |
| 108 white-space: nowrap !important; | 108 white-space: nowrap !important; |
| 109 } | 109 } |
| 110 | 110 |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 } | 163 } |
| 164 | 164 |
| 165 body.dock-to-bottom .toolbar-background .tabbed-pane-header { | 165 body.dock-to-bottom .toolbar-background .tabbed-pane-header { |
| 166 cursor: ns-resize; | 166 cursor: ns-resize; |
| 167 } | 167 } |
| 168 | 168 |
| 169 body.dock-to-bottom .toolbar-background .tabbed-pane-header .tabbed-pane-header-
tabs { | 169 body.dock-to-bottom .toolbar-background .tabbed-pane-header .tabbed-pane-header-
tabs { |
| 170 cursor: default; | 170 cursor: default; |
| 171 } | 171 } |
| 172 | 172 |
| 173 body.platform-windows .toolbar-colors, | 173 .platform-windows .toolbar-colors, |
| 174 body.platform-windows.inactive .toolbar-colors { | 174 .platform-windows.inactive .toolbar-colors { |
| 175 background-image: none; | 175 background-image: none; |
| 176 } | 176 } |
| 177 | 177 |
| 178 body.undocked.platform-mac-leopard .toolbar-colors { | |
| 179 background-image: linear-gradient(to bottom, rgb(175, 175, 175), rgb(151, 15
1, 151)) !important; | |
| 180 color: #333 !important; | |
| 181 } | |
| 182 | |
| 183 body.undocked.platform-mac-leopard.inactive .toolbar-colors { | |
| 184 background-image: linear-gradient(to bottom, rgb(221, 221, 221), rgb(207, 20
7, 207)) !important; | |
| 185 color: #555 !important; | |
| 186 } | |
| 187 | |
| 188 body.undocked.platform-mac-snowleopard .toolbar-colors { | |
| 189 background-image: linear-gradient(to bottom, rgb(189, 189, 189), rgb(167, 16
7, 167)) !important; | |
| 190 color: #333 !important; | |
| 191 } | |
| 192 | |
| 193 body.undocked.platform-mac-snowleopard.inactive .toolbar-colors { | |
| 194 background-image: linear-gradient(to bottom, rgb(228, 228, 228), rgb(216, 21
6, 216)) !important; | |
| 195 color: #555 !important; | |
| 196 } | |
| 197 | |
| 198 body.undocked.platform-mac .toolbar-colors { | 178 body.undocked.platform-mac .toolbar-colors { |
| 199 background-image: linear-gradient(to bottom, rgb(208, 208, 208), rgb(200, 20
0, 200)) !important; | 179 background-image: linear-gradient(to bottom, rgb(208, 208, 208), rgb(200, 20
0, 200)) !important; |
| 200 color: #333 !important; | 180 color: #333 !important; |
| 201 } | 181 } |
| 202 | 182 |
| 203 body.undocked.platform-mac.inactive .toolbar-colors { | 183 body.undocked.platform-mac.inactive .toolbar-colors { |
| 204 background-image: linear-gradient(to bottom, rgb(238, 238, 238), rgb(224, 22
4, 224)) !important; | 184 background-image: linear-gradient(to bottom, rgb(238, 238, 238), rgb(224, 22
4, 224)) !important; |
| 205 color: #555 !important; | 185 color: #555 !important; |
| 206 } | 186 } |
| 207 | 187 |
| (...skipping 1041 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1249 } | 1229 } |
| 1250 | 1230 |
| 1251 .auto-complete-text, | 1231 .auto-complete-text, |
| 1252 .editing .auto-complete-text { | 1232 .editing .auto-complete-text { |
| 1253 color: rgb(128, 128, 128) !important; | 1233 color: rgb(128, 128, 128) !important; |
| 1254 -webkit-user-select: none; | 1234 -webkit-user-select: none; |
| 1255 -webkit-user-modify: read-only; | 1235 -webkit-user-modify: read-only; |
| 1256 } | 1236 } |
| 1257 | 1237 |
| 1258 .panel { | 1238 .panel { |
| 1259 display: none; | 1239 display: none !important; |
| 1260 overflow: hidden; | 1240 overflow: hidden; |
| 1261 position: absolute; | 1241 position: absolute; |
| 1262 top: 0; | 1242 top: 0; |
| 1263 left: 0; | 1243 left: 0; |
| 1264 right: 0; | 1244 right: 0; |
| 1265 bottom: 0; | 1245 bottom: 0; |
| 1266 z-index: 0; | 1246 z-index: 0; |
| 1267 } | 1247 } |
| 1268 | 1248 |
| 1269 .panel.visible { | 1249 .panel.visible { |
| 1270 display: flex; | 1250 display: flex !important; |
| 1271 } | 1251 } |
| 1272 | 1252 |
| 1273 .panel.extension-panel.visible { | 1253 .panel.extension-panel.visible { |
| 1274 display: flex !important; | 1254 display: flex !important; |
| 1275 flex-direction: column; | 1255 flex-direction: column; |
| 1276 } | 1256 } |
| 1277 | 1257 |
| 1278 .extension-view { | 1258 .extension-view { |
| 1279 flex: auto; | 1259 flex: auto; |
| 1280 } | 1260 } |
| (...skipping 981 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2262 pointer-events: none; | 2242 pointer-events: none; |
| 2263 } | 2243 } |
| 2264 | 2244 |
| 2265 .soft-context-menu-item-mouse-over { | 2245 .soft-context-menu-item-mouse-over { |
| 2266 border-top: 1px solid rgb(56, 121, 217); | 2246 border-top: 1px solid rgb(56, 121, 217); |
| 2267 border-bottom: 1px solid rgb(56, 121, 217); | 2247 border-bottom: 1px solid rgb(56, 121, 217); |
| 2268 background-color: rgb(56, 121, 217); | 2248 background-color: rgb(56, 121, 217); |
| 2269 color: white; | 2249 color: white; |
| 2270 } | 2250 } |
| 2271 | 2251 |
| 2272 body.platform-mac .soft-context-menu-item-mouse-over { | 2252 .platform-mac .soft-context-menu-item-mouse-over { |
| 2273 border-top: 1px solid rgb(90, 131, 236); | 2253 border-top: 1px solid rgb(90, 131, 236); |
| 2274 border-bottom: 1px solid rgb(18, 88, 233); | 2254 border-bottom: 1px solid rgb(18, 88, 233); |
| 2275 background-image: linear-gradient(to bottom, rgb(100, 140, 243), rgb(36, 101
, 243)); | 2255 background-image: linear-gradient(to bottom, rgb(100, 140, 243), rgb(36, 101
, 243)); |
| 2276 } | 2256 } |
| 2277 | 2257 |
| 2278 .soft-context-menu-item-checkmark { | 2258 .soft-context-menu-item-checkmark { |
| 2279 color: rgb(108, 108, 108); | 2259 color: rgb(108, 108, 108); |
| 2280 pointer-events: none; | 2260 pointer-events: none; |
| 2281 } | 2261 } |
| 2282 | 2262 |
| (...skipping 29 matching lines...) Expand all Loading... |
| 2312 height: 20px; | 2292 height: 20px; |
| 2313 border-radius: 2px; | 2293 border-radius: 2px; |
| 2314 color: #303030; | 2294 color: #303030; |
| 2315 } | 2295 } |
| 2316 | 2296 |
| 2317 .search-drawer-header input[type="search"].search-config-search:focus { | 2297 .search-drawer-header input[type="search"].search-config-search:focus { |
| 2318 border: 1px solid rgb(190, 190, 190); | 2298 border: 1px solid rgb(190, 190, 190); |
| 2319 outline: none; | 2299 outline: none; |
| 2320 } | 2300 } |
| 2321 | 2301 |
| 2322 body.platform-mac .search-drawer-header input[type="search"].search-config-searc
h { | 2302 .platform-mac .search-drawer-header input[type="search"].search-config-search { |
| 2323 top: 1px; | 2303 top: 1px; |
| 2324 } | 2304 } |
| 2325 | 2305 |
| 2326 .search-drawer-header label.search-config-label { | 2306 .search-drawer-header label.search-config-label { |
| 2327 margin: auto 0; | 2307 margin: auto 0; |
| 2328 margin-left: 8px; | 2308 margin-left: 8px; |
| 2329 color: #303030; | 2309 color: #303030; |
| 2330 display: flex; | 2310 display: flex; |
| 2331 } | 2311 } |
| 2332 | 2312 |
| (...skipping 310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2643 | 2623 |
| 2644 .progress-bar-container span { | 2624 .progress-bar-container span { |
| 2645 padding: 6px; | 2625 padding: 6px; |
| 2646 } | 2626 } |
| 2647 | 2627 |
| 2648 .progress-bar-container progress { | 2628 .progress-bar-container progress { |
| 2649 margin-top: 7px; | 2629 margin-top: 7px; |
| 2650 -webkit-flex: 1 0; | 2630 -webkit-flex: 1 0; |
| 2651 } | 2631 } |
| 2652 | 2632 |
| 2653 body.platform-mac .progress-bar-container progress { | 2633 .platform-mac .progress-bar-container progress { |
| 2654 margin-top: 6px; | 2634 margin-top: 6px; |
| 2655 } | 2635 } |
| 2656 | 2636 |
| 2657 .progress-bar-container button.status-bar-item { | 2637 .progress-bar-container button.status-bar-item { |
| 2658 border-left: none; | 2638 border-left: none; |
| 2659 margin-top: 1px; | 2639 margin-top: 1px; |
| 2660 } | 2640 } |
| 2661 | 2641 |
| 2662 .elements-tree-outline li.parent::before { | 2642 .elements-tree-outline li.parent::before { |
| 2663 top: 0 !important; | 2643 top: 0 !important; |
| (...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2839 } | 2819 } |
| 2840 | 2820 |
| 2841 .resources-divider-label { | 2821 .resources-divider-label { |
| 2842 position: absolute; | 2822 position: absolute; |
| 2843 top: 4px; | 2823 top: 4px; |
| 2844 right: 3px; | 2824 right: 3px; |
| 2845 font-size: 80%; | 2825 font-size: 80%; |
| 2846 white-space: nowrap; | 2826 white-space: nowrap; |
| 2847 pointer-events: none; | 2827 pointer-events: none; |
| 2848 } | 2828 } |
| OLD | NEW |