-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathDataBrowserHeaderBar.scss
More file actions
119 lines (107 loc) · 1.95 KB
/
DataBrowserHeaderBar.scss
File metadata and controls
119 lines (107 loc) · 1.95 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) 2016-present, Parse, LLC
* All rights reserved.
*
* This source code is licensed under the license found in the LICENSE file in
* the root directory of this source tree.
*/
@import 'stylesheets/globals.scss';
.bar {
position: sticky;
z-index: 10;
top: 0;
left: 0;
height: 0;
background: #66637a;
white-space: nowrap;
display: inline-block;
min-width: 100%;
// to resolve rendering issue with retina displays
-webkit-transform: translate3d(0, 0, 0);
}
.wrap {
display: inline-block;
vertical-align: top;
}
.addColumn {
display: inline-block;
height: 30px;
vertical-align: top;
padding: 0 25px;
}
.addColumnButton {
@include buttonReset($bg: #343445);
display: inline-block;
height: 20px;
width: 130px;
text-align: center;
line-height: 20px;
margin-top: 5px;
color: white;
border-radius: 5px;
vertical-align: top;
font-size: 12px;
}
.check {
line-height: 30px;
height: 30px;
vertical-align: top;
text-align: center;
width: 30px;
background: rgb(114, 111, 133);
}
.rowNumber {
line-height: 30px;
height: 30px;
vertical-align: top;
text-align: right;
background: rgb(114, 111, 133);
border-right: 1px solid #e3e3ea;
padding: 0 4px;
box-sizing: border-box;
}
.handle {
position: relative;
display: inline-block;
width: 8px;
height: 30px;
margin: 0 -4px;
cursor: ew-resize;
}
.pickerPointer {
.check {
input {
display: none;
}
}
}
.preventSort {
:hover {
cursor: not-allowed;
}
}
.skeleton {
position: absolute;
width: 100%;
height: 100%;
top: 30px;
}
.skeletonRow {
border-top: 1px solid #e3e3ea;
border-bottom: 1px solid #e3e3ea;
height: 30px;
width: 100%;
vertical-align: middle;
padding-left: 2px;
margin-top: 30px;
line-height: 31px;
animation: skeleton-loading 1s linear infinite alternate;
}
@keyframes skeleton-loading {
0% {
background-color: #ffffff;
}
100% {
background-color: #e3e3ea;
}
}