mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-31 14:09:58 +07:00
* mv3 updated fontSettings sample * Added mv3 sample for fontSettings * Implemented simplified font settings sample * Update popup.js
101 lines
2.1 KiB
CSS
101 lines
2.1 KiB
CSS
/* 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. */
|
|
|
|
/* Copy of /resources/shared/css/chrome_shared.css for sample extension. */
|
|
|
|
/* Prevent CSS from overriding the hidden property. */
|
|
[hidden] {
|
|
display: none !important;
|
|
}
|
|
|
|
html.loading * {
|
|
transition-delay: 0ms !important;
|
|
transition-duration: 0ms !important;
|
|
}
|
|
|
|
body {
|
|
cursor: default;
|
|
margin: 0;
|
|
}
|
|
|
|
p {
|
|
line-height: 1.8em;
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3 {
|
|
-webkit-user-select: none;
|
|
font-weight: normal;
|
|
/* Makes the vertical size of the text the same for all fonts. */
|
|
line-height: 1;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 1.5em;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 1.3em;
|
|
margin-bottom: 0.4em;
|
|
}
|
|
|
|
h3 {
|
|
color: black;
|
|
font-size: 1.2em;
|
|
margin-bottom: 0.8em;
|
|
}
|
|
|
|
a {
|
|
color: rgb(17, 85, 204);
|
|
text-decoration: underline;
|
|
}
|
|
|
|
a:active {
|
|
color: rgb(5, 37, 119);
|
|
}
|
|
|
|
/* Elements that need to be LTR even in an RTL context, but should align
|
|
* right. (Namely, URLs, search engine names, etc.)
|
|
*/
|
|
html[dir='rtl'] .weakrtl {
|
|
direction: ltr;
|
|
text-align: right;
|
|
}
|
|
|
|
/* Input fields in search engine table need to be weak-rtl. Since those input
|
|
* fields are generated for all cr.ListItem elements (and we only want weakrtl
|
|
* on some), the class needs to be on the enclosing div.
|
|
*/
|
|
html[dir='rtl'] div.weakrtl input {
|
|
direction: ltr;
|
|
text-align: right;
|
|
}
|
|
|
|
html[dir='rtl'] .favicon-cell.weakrtl {
|
|
padding-inline-end: 22px;
|
|
padding-inline-start: 0;
|
|
}
|
|
|
|
/* weakrtl for selection drop downs needs to account for the fact that
|
|
* Webkit does not honor the text-align attribute for the select element.
|
|
* (See Webkit bug #40216)
|
|
*/
|
|
html[dir='rtl'] select.weakrtl {
|
|
direction: rtl;
|
|
}
|
|
|
|
html[dir='rtl'] select.weakrtl option {
|
|
direction: ltr;
|
|
}
|
|
|
|
/* WebKit does not honor alignment for text specified via placeholder attribute.
|
|
* This CSS is a workaround. Please remove once WebKit bug is fixed.
|
|
* https://bugs.webkit.org/show_bug.cgi?id=63367
|
|
*/
|
|
html[dir='rtl'] input.weakrtl::-webkit-input-placeholder,
|
|
html[dir='rtl'] .weakrtl input::-webkit-input-placeholder {
|
|
direction: rtl;
|
|
}
|