mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-28 13:39:44 +07:00
* Remove docs folder. This was a redirect from a GitHub pages site that does not appear to be in use. * Rename api folder to api-samples. * Move examples to functional-samples folder. * Move cookbook sample to functional-samples. * Move tutorials to functional-samples folder. * Move mv2 and apps folders to _archive. * Rename tools folder to .repo. * Move reference folder to functional-samples. * Update README. Update README with new relative links for reorg. * Update README.md Co-authored-by: amysteamdev <37001393+AmySteam@users.noreply.github.com> --------- Co-authored-by: amysteamdev <37001393+AmySteam@users.noreply.github.com>
315 lines
5.4 KiB
CSS
315 lines
5.4 KiB
CSS
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: Lucida Grande, Arial, sans-serif;
|
|
}
|
|
|
|
button,
|
|
input {
|
|
outline: none;
|
|
}
|
|
|
|
#controls {
|
|
padding: 3px;
|
|
border-bottom: solid 1px #ccc;
|
|
background-color: #eee;
|
|
}
|
|
|
|
#controls button,
|
|
#controls input {
|
|
font-size: 14px;
|
|
line-height: 24px;
|
|
border-radius: 2px;
|
|
padding: 0 6px;
|
|
}
|
|
|
|
button,
|
|
input[type="submit"],
|
|
button[disabled]:hover {
|
|
border: solid 1px transparent;
|
|
background: transparent;
|
|
}
|
|
|
|
button:hover,
|
|
input[type="submit"]:hover,
|
|
button:focus,
|
|
input[type="submit"]:focus {
|
|
border-color: #ccc;
|
|
background: -webkit-linear-gradient(bottom, #cccccc 0%, #f2f2f2 99%);
|
|
}
|
|
|
|
button:focus,
|
|
input[type="submit"]:focus {
|
|
border-style: outset;
|
|
}
|
|
|
|
button:active,
|
|
input[type="submit"]:active {
|
|
border-color: #bbb;
|
|
border-style: solid;
|
|
background: -webkit-linear-gradient(bottom, #e2e2e2 0%, #bbbbbb 99%);
|
|
}
|
|
|
|
/* These glyphs are on the small side, make them look more natural when
|
|
compared to the back/forward buttons */
|
|
#controls #home,
|
|
#controls #terminate {
|
|
font-size: 24px;
|
|
}
|
|
|
|
#controls #reload {
|
|
font-size: 20px;
|
|
}
|
|
|
|
#controls #zoom,
|
|
#controls #find {
|
|
font-size: 18px;
|
|
}
|
|
|
|
#location {
|
|
border: solid 1px #ccc;
|
|
padding: 2px;
|
|
width: 100%;
|
|
-webkit-box-sizing: border-box;
|
|
}
|
|
|
|
#controls {
|
|
display: -webkit-flex;
|
|
-webit-flex-direction: column;
|
|
}
|
|
|
|
#controls #location-form {
|
|
-webkit-flex: 1;
|
|
display: -webkit-flex;
|
|
-webit-flex-direction: column;
|
|
}
|
|
|
|
#controls #center-column {
|
|
-webkit-flex: 1;
|
|
}
|
|
|
|
#zoom-box,
|
|
#find-box {
|
|
background-color: #eee;
|
|
border: solid 1px #ccc;
|
|
border-top: solid 1px #eee;
|
|
border-bottom-left-radius: 2px;
|
|
border-bottom-right-radius: 2px;
|
|
padding: 2px;
|
|
|
|
position: fixed;
|
|
margin-top: -1px;
|
|
height: 25px;
|
|
|
|
display: none;
|
|
}
|
|
|
|
#zoom-box #zoom-form,
|
|
#find-box #find-form {
|
|
-webkit-flex: 1;
|
|
display: -webkit-flex;
|
|
-webit-flex-direction: row;
|
|
min-width: 0;
|
|
}
|
|
|
|
#zoom-box input,
|
|
#zoom-box button,
|
|
#find-box button {
|
|
border-radius: 2px;
|
|
}
|
|
|
|
#zoom-box #zoom-text,
|
|
#find-box #find-text {
|
|
border: solid 1px #ccc;
|
|
margin-right: 0px;
|
|
padding: 2px;
|
|
-webkit-box-sizing: border-box;
|
|
-webkit-flex: 1;
|
|
min-width: 0;
|
|
}
|
|
|
|
#zoom-box {
|
|
left: 5px;
|
|
width: 125px;
|
|
z-index: 1;
|
|
}
|
|
|
|
#zoom-box input[type="submit"] {
|
|
font-size: 14px;
|
|
margin: 2px 0px;
|
|
padding: 0 2px 3px 2px;
|
|
width: 22px;
|
|
}
|
|
|
|
#zoom-box button {
|
|
font-size: 12px;
|
|
margin: 2px 0px;
|
|
padding: 0px 1px 0px 0px;
|
|
width: 20px;
|
|
}
|
|
|
|
#find-box {
|
|
right: 5px;
|
|
width: 280px;
|
|
z-index: 2;
|
|
}
|
|
|
|
#find-box #find-text {
|
|
border-right-style: none;
|
|
border-top-left-radius: 2px;
|
|
border-bottom-left-radius: 2px;
|
|
}
|
|
|
|
#find-box #find-results {
|
|
color: #888;
|
|
background-color: #fff;
|
|
border: solid 1px #ccc;
|
|
border-left-style: none;
|
|
border-top-right-radius: 2px;
|
|
border-bottom-right-radius: 2px;
|
|
padding: 3px 4px 2px 0;
|
|
text-align: center;
|
|
}
|
|
|
|
#find-results {
|
|
margin: 0px 0px;
|
|
}
|
|
|
|
#find-box #match-case {
|
|
margin: 2px 0px;
|
|
font-size: 10px;
|
|
width: 28px;
|
|
}
|
|
|
|
#find-box #find-backward,
|
|
#find-box #find-forward {
|
|
font-size: 14px;
|
|
width: 24px;
|
|
}
|
|
|
|
.overlay {
|
|
-webkit-box-align: center;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-box-pack: center;
|
|
-webkit-perspective: 1px;
|
|
-webkit-transition: 200ms opacity;
|
|
background-color: rgba(255, 255, 255, 0.75);
|
|
bottom: 0;
|
|
display: none;
|
|
left: 0;
|
|
overflow: auto;
|
|
padding: 20px;
|
|
position: fixed;
|
|
right: 0;
|
|
top: 0;
|
|
}
|
|
|
|
#clear-data-overlay {
|
|
z-index: 3;
|
|
}
|
|
|
|
#clear-data-confirm {
|
|
-webkit-box-orient: vertical;
|
|
background-clip: border-box;
|
|
background-color: rgb(255, 255, 255);
|
|
background-image: none;
|
|
background-origin: padding-box;
|
|
background-size: auto;
|
|
border-bottom-left-radius: 3px;
|
|
border-bottom-right-radius: 3px;
|
|
border-top-left-radius: 3px;
|
|
border-top-right-radius: 3px;
|
|
box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 23px 5px, rgba(0, 0, 0, 0.14902) 0px 2px 6px 0px;
|
|
color: rgb(51, 51, 51);
|
|
display: none;
|
|
min-width: 400px;
|
|
padding-bottom: 0px;
|
|
padding-left: 0px;
|
|
padding-right: 0px;
|
|
padding-top: 0px;
|
|
transition-delay: 0s;
|
|
transition-duration: 0.2s;
|
|
transition-property: -webkit-transform;
|
|
transition-timing-function: ease;
|
|
width: 500px;
|
|
z-index: 0;
|
|
display: none;
|
|
position: fixed;
|
|
top: 25%;
|
|
left: 50%;
|
|
width: 400px;
|
|
margin-left: -200px;
|
|
padding: 16px;
|
|
background-color: white;
|
|
z-index: 4;
|
|
overflow: auto;
|
|
}
|
|
|
|
#clear-data-checkbox {
|
|
list-style-type: none;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
#sad-webview,
|
|
webview {
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
}
|
|
|
|
/* The reload button turns into a spinning trobber */
|
|
.loading #reload {
|
|
-webkit-animation: spinner-animation .5s infinite linear;
|
|
-webkit-transform-origin: 50% 55.5%;
|
|
}
|
|
|
|
@-webkit-keyframes spinner-animation {
|
|
0% { -webkit-transform: rotate(0deg); }
|
|
100% {-webkit-transform: rotate(360deg); }
|
|
}
|
|
|
|
/* Due to http://crbug.com/156219 we can't use display: none */
|
|
#sad-webview,
|
|
.exited webview {
|
|
visibility: hidden;
|
|
visibility: hidden;
|
|
}
|
|
|
|
.exited #sad-webview {
|
|
visibility: visible;
|
|
background: #343f51;
|
|
text-align: center;
|
|
color: #fff;
|
|
}
|
|
|
|
#sad-webview h2 {
|
|
font-size: 14px;
|
|
}
|
|
|
|
#sad-webview p {
|
|
font-size: 11px;
|
|
}
|
|
|
|
#sad-webview-icon {
|
|
font-size: 96px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
/* Variant of the crashed page when the process is intentionally killed (in that
|
|
case we use a different background color and label). */
|
|
.exited #sad-webview #killed-label {
|
|
display: none;
|
|
}
|
|
|
|
.killed #sad-webview {
|
|
background: #393058;
|
|
}
|
|
|
|
.killed #sad-webview #killed-label {
|
|
display: block;
|
|
}
|
|
|
|
.killed #sad-webview #crashed-label {
|
|
display: none;
|
|
}
|