forked from link277/chromedeveditor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspark_common.css
More file actions
executable file
·119 lines (99 loc) · 2.3 KB
/
spark_common.css
File metadata and controls
executable file
·119 lines (99 loc) · 2.3 KB
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
/* Copyright (c) 2014, Google Inc. Please see the AUTHORS file for details. */
/* All rights reserved. Use of this source code is governed by a BSD-style */
/* license that can be found in the LICENSE file. */
@import url("third_party/roboto/roboto.css");
body {
font-family: Roboto, 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-weight: 400;
font-size: 13px;
-webkit-font-smoothing: auto;
}
/* TODO(ussuri): Replace scrollbar and *-align-box rules with new Spark widgets. */
/* TODO(devoncarew): We should narrow these down to specific elements or classes
of elements. */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-thumb {
min-height: 48px;
}
::-webkit-scrollbar-track,
.scrollbar-light::-webkit-scrollbar-track {
background-color: #eee;
}
::-webkit-scrollbar-thumb,
.scrollbar-light::-webkit-scrollbar-thumb {
background-color: #aaa;
}
::-webkit-scrollbar-thumb:hover,
.scrollbar-light::-webkit-scrollbar-thumb:hover {
background-color: #7d7d7d;
}
.scrollbar-dark::-webkit-scrollbar-track,
.ace_scrollbar::-webkit-scrollbar-track {
background-color: #666;
}
.scrollbar-dark::-webkit-scrollbar-thumb,
.ace_scrollbar::-webkit-scrollbar-thumb {
background-color: #aaa;
}
.scrollbar-dark::-webkit-scrollbar-thumb:hover,
.ace_scrollbar::-webkit-scrollbar-thumb:hover {
background-color: #ccc;
}
.hidden {
display: none !important;
visibility: hidden !important;
}
.top-align-box,
.vert-align-box,
.horiz-align-box {
display:flex;
}
.vert-align-box {
flex-flow: row;
align-items: center;
}
.horiz-align-box {
flex-flow: column;
align-items: center;
}
.top-align-box {
flex-flow: row;
align-items: flex-start;
}
.vert-align-box > *,
.top-align-box > * {
margin-top: 0;
margin-bottom: 0;
}
.horiz-align-box > * {
margin-left: 0;
margin-right: 0;
}
/* Uncomment these 2 rules, or selectively apply the .debug class or debug
* attribute, to facilitate debuging of elements.
*/
/*
* {
outline: blue solid 1px !important;
}
:host > * {
outline: red dashed 1px !important;
}
::content > * {
outline: green dotted 1px !important;
}
*/
.debug, [debug] {
outline: blue solid 1px !important;
}
/* Uncomment this rule to debug focus changes, e.g. when cycling the focus
* using TAB.
*/
/*
*:focus {
box-shadow: 0 0 10px 10px pink !important;
}
*/