1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189
|
/* Copyright (c) 2012 The Chromium Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file. */
body {
-webkit-margin-start: 23px;
color: rgb(48, 57, 66);
}
body.uber-frame {
-webkit-margin-start: 155px;
}
html[dir='rtl'] body.uber-frame {
/* Enable vertical scrollbar at all times in RTL to avoid visual glitches when
* showing sub-pages that vertically overflow. */
overflow-y: scroll;
}
/* TODO(dbeam): Remove .page class from overlays in settings so the junk below
* isn't necessary. */
body #extension-settings.page,
body #mainview-content .page,
body .subpage-sheet-container .page,
body > .page {
-webkit-margin-end: 24px;
min-width: 576px;
padding-bottom: 20px;
padding-top: 55px;
}
body header {
background-image: -webkit-linear-gradient(white,
white 40%,
rgba(255, 255, 255, 0.92));
left: 23px;
/* <section>s in options currently amount to 638px total, broken up into
* 600px max-width + 18px -webkit-padding-start + 20px -webkit-margin-end
* so we mirror this value here so the headers match width and horizontal
* alignment when scrolling sideways.
* other-devices.css' .device width depends on this, please keep in sync.
*/
max-width: 738px;
min-width: 600px;
position: fixed;
right: 0;
top: 0;
/* list.css sets a z-index of up to 2, this is set to 3 to ensure that the
* header is in front of the selected list item. */
z-index: 3;
}
body.uber-frame header {
left: 155px;
}
html[dir='rtl'] body header {
left: 0;
right: 23px;
}
html[dir='rtl'] body.uber-frame header {
right: 155px;
}
body header > .search-field-container,
body header > .header-extras,
body header > button {
position: absolute;
right: 20px;
top: 21px;
}
html[dir='rtl'] body header > .search-field-container,
html[dir='rtl'] body header > .header-extras,
html[dir='rtl'] body header > button {
left: 20px;
right: auto;
}
body header input[type='search'],
body header input[type='text'],
body header button {
margin: 0;
}
body header > h1 {
margin: 0;
padding: 21px 0 13px;
}
/* Create a border under the h1 (but before anything that gets appended
* to the end of the header). */
body header > h1::after {
-webkit-margin-end: 20px;
background-color: #eee;
content: ' ';
display: block;
height: 1px;
position: relative;
top: 13px;
}
body footer {
border-top: 1px solid #eee;
margin-top: 16px;
/* min-width and max-width should match the header */
max-width: 638px;
min-width: 600px;
padding: 8px 0;
}
/* Sections are used in options pages, help page and history page. This defines
* the section metrics to match the header metrics above. */
body section {
-webkit-padding-start: 18px;
margin-bottom: 24px;
margin-top: 8px;
max-width: 600px;
}
body section:last-of-type {
margin-bottom: 0;
}
body section > h3 {
-webkit-margin-start: -18px;
}
body section > div:only-of-type {
-webkit-box-flex: 1;
}
body .section-header {
-webkit-margin-start: -18px;
margin-bottom: 0.8em;
margin-top: 1.2em;
}
body .section-header > h3 {
display: inline;
}
/* Styles for a hideable notification banner at the top of a page. */
.page.showing-banner {
margin-top: 45px;
}
.page-banner {
background-color: white;
width: 100%;
z-index: 2;
}
.page:not(.showing-banner) .page-banner {
display: none;
}
.page-banner-gradient {
background: -webkit-linear-gradient(rgb(255, 242, 183),
rgb(250, 230, 145));
border: 1px solid rgb(201, 189, 141);
border-radius: 3px;
margin: 9px 9px 0 9px;
min-height: 25px;
}
.page-banner .page-banner-gradient {
-webkit-margin-end: 20px;
-webkit-margin-start: 0;
margin-bottom: 9px;
}
.page-banner-text {
-webkit-padding-end: 8px;
-webkit-padding-start: 26px;
background-image: url(chrome://theme/IDR_CONTROLLED_SETTING_MANDATORY);
background-position: 5px center;
background-repeat: no-repeat;
background-size: 16px;
display: block;
padding-bottom: 8px;
padding-top: 8px;
}
.page-banner.clickable:active .page-banner-text {
background: -webkit-linear-gradient(rgb(250, 230, 145),
rgb(255, 242, 183));
}
|