| OLD | NEW |
| 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
| 3 * found in the LICENSE file. */ | 3 * found in the LICENSE file. */ |
| 4 | 4 |
| 5 body, | 5 body, |
| 6 html { | 6 html { |
| 7 color: rgb(48, 57, 66); | 7 color: rgb(48, 57, 66); |
| 8 font-family: Arial, sans-serif; | 8 font-family: Arial, sans-serif; |
| 9 font-size: 90%; | 9 font-size: 90%; |
| 10 overflow: visible; | 10 overflow: visible; |
| 11 } | 11 } |
| 12 | 12 |
| 13 hr { | 13 hr { |
| 14 color: rgb(115, 111, 110); | 14 color: rgb(115, 111, 110); |
| 15 margin: 15px 0; | 15 margin: 15px 0; |
| 16 } | 16 } |
| 17 | 17 |
| 18 /* Override the visual style of tabs. */ | 18 /* Override the visual style of tabs. */ |
| 19 | 19 |
| 20 #tabs-header-container { |
| 21 border-bottom: 1px solid #e0e0e0; |
| 22 height: calc(100% - 53px); |
| 23 } |
| 24 |
| 25 #tabs { |
| 26 border-bottom: none; |
| 27 margin: 5px auto 0; |
| 28 padding: 0 5px; |
| 29 width: 800px; |
| 30 } |
| 31 |
| 20 tabs tab { | 32 tabs tab { |
| 33 border-color: #e0e0e0; |
| 21 min-width: 150px; | 34 min-width: 150px; |
| 22 padding: 5px 20px; | 35 padding: 5px 20px; |
| 23 } | 36 } |
| 24 | 37 |
| 38 tabs > [selected] { |
| 39 background: white; |
| 40 border-color: #e0e0e0; |
| 41 } |
| 42 |
| 43 html.focus-outline-visible tabs:focus > [selected] { |
| 44 background: white; |
| 45 border-color: rgb(160, 160, 255); |
| 46 outline: none; |
| 47 } |
| 48 |
| 49 tabs > :not([selected]) { |
| 50 background: rgba(0, 0, 0, 0.02); |
| 51 border-color: #e0e0e0; |
| 52 } |
| 53 |
| 54 tabs > :not([selected]):hover { |
| 55 background: rgba(255, 255, 255, 0.9); |
| 56 } |
| 57 |
| 58 tabpanels { |
| 59 height: 100%; |
| 60 padding: 0; |
| 61 width: 100%; |
| 62 } |
| 63 |
| 64 tabpanel { |
| 65 margin: 0 auto; |
| 66 padding-top: 80px; |
| 67 width: 800px; |
| 68 } |
| 69 |
| 70 /* Header */ |
| 71 |
| 72 #header { |
| 73 background-color: rgba(255, 255, 255, 0.9); |
| 74 position: fixed; |
| 75 top: 0; |
| 76 width: 100%; |
| 77 z-index: 1; |
| 78 } |
| 79 |
| 80 #developer-controls { |
| 81 margin-top: 0; |
| 82 max-width: none; |
| 83 padding: 3px 10px 8px; |
| 84 width: calc(100% - 20px); |
| 85 } |
| 86 |
| 87 #header-title { |
| 88 -webkit-margin-start: 50px; |
| 89 display: inline-block; |
| 90 font-size: 1.2em; |
| 91 position: relative; |
| 92 top: 3px; |
| 93 } |
| 94 |
| 95 #header-bottom-gradient { |
| 96 background: linear-gradient(to bottom, white, rgba(255, 255, 255, 0)); |
| 97 height: 30px; |
| 98 position: fixed; |
| 99 top: 79px; |
| 100 width: 100%; |
| 101 } |
| 102 |
| 103 #search { |
| 104 float: right; |
| 105 margin-top: 7px; |
| 106 padding: 4px; |
| 107 width: 200px; |
| 108 } |
| 109 |
| 110 html[dir='rtl'] #search { |
| 111 float: left; |
| 112 } |
| 113 |
| 25 /* Contents */ | 114 /* Contents */ |
| 26 | 115 |
| 27 #extension-settings { | 116 #extension-settings { |
| 28 margin: 30px; | 117 margin: 0; |
| 29 max-width: 800px; | 118 max-width: 100%; |
| 119 padding: 10px 0; |
| 30 } | 120 } |
| 31 | 121 |
| 32 #no-extensions-message, | 122 #no-extensions-message, |
| 33 #no-apps-message { | 123 #no-apps-message { |
| 34 font-weight: bold; | 124 font-weight: bold; |
| 35 } | 125 } |
| 36 | 126 |
| 37 .empty-item-list { | 127 .empty-item-list { |
| 38 height: 3em; | 128 height: 3em; |
| 39 } | 129 } |
| 40 | 130 |
| 41 #developer-controls { | |
| 42 margin-top: 15px; | |
| 43 max-width: 750px; | |
| 44 } | |
| 45 | |
| 46 #search { | |
| 47 float: right; | |
| 48 } | |
| 49 | |
| 50 html[dir='rtl'] #search { | |
| 51 float: left; | |
| 52 } | |
| 53 | |
| 54 #no-extensions, | 131 #no-extensions, |
| 55 #no-apps { | 132 #no-apps { |
| 56 margin: 10px 10px; | 133 margin: 10px 10px; |
| 57 } | 134 } |
| 58 | 135 |
| 59 .loading #no-extensions, | 136 .loading #no-extensions, |
| 60 .loading #no-apps, | 137 .loading #no-apps, |
| 61 #extension-settings-list:not(.empty-item-list) ~ #no-extensions, | 138 #extension-settings-list:not(.empty-item-list) ~ #no-extensions, |
| 62 #app-settings-list:not(.empty-item-list) ~ #no-apps, | 139 #app-settings-list:not(.empty-item-list) ~ #no-apps, |
| 63 .empty-item-list { | 140 .empty-item-list { |
| (...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 } | 333 } |
| 257 | 334 |
| 258 a { | 335 a { |
| 259 color: rgb(17, 85, 204); | 336 color: rgb(17, 85, 204); |
| 260 text-decoration: underline; | 337 text-decoration: underline; |
| 261 } | 338 } |
| 262 | 339 |
| 263 a:active { | 340 a:active { |
| 264 color: rgb(5, 37, 119); | 341 color: rgb(5, 37, 119); |
| 265 } | 342 } |
| OLD | NEW |