-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
165 lines (146 loc) · 2.95 KB
/
styles.css
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
* {
font-family: sans-serif;
box-sizing: border-box;
}
div.j2f__label,
label.j2f__label {
padding: 5px;
margin: 8px;
display: flex;
flex-direction: column;
max-width: 300px;
min-width: 80px;
color: gray;
}
div.j2f__form {
position:relative;
border-radius: 3px;
box-shadow: 0px 0px 6px 1px rgba(0,0,0,0.2);
padding:16px;
margin:14px;
}
.j2f__form input {
background: transparent;
}
div.j2f__crud {
border: 1px solid #ddd;
border-radius: 3px;
overflow-x: auto;
padding: 0px 20px 30px 20px;
margin: 10px;
}
/*.j2f__crud--overflow {
box-shadow: -16px 0px 10px -4px rgba(0,0,0,0.1) inset;
}*/
div.j2f__overlay {
background: rgba(0,0,0, 0.4);
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
z-index: 3000;
}
/*.j2f__icon {
border-radius: 3px;
box-shadow: 0px 0px 1px 1px rgba(0,0,0,0.2);
display: flex;
justify-content: center;
align-items: center;
padding: 8px;
width: 36px;
height: 36px;
margin: 2px;
cursor: pointer;
}
.j2f__icon:active {
background-color: #eee;
box-shadow: 0px 0px 2px 2px rgba(0,0,0,0.2) inset;
}*/
.j2f__table tr {
position: relative;
}
.j2f__table th {
font-size: 11px;
}
td.j2f__label > * {
margin: 4px;
width: 80px;
}
tr.j2f__overlay td:first-child:before {
content: "";
background: rgba(0,0,0, 0.1);
border-radius: 3px;
position: absolute;
display: block;
width: 100%;
height: 100%;
top: 0;
left: 0;
z-index: 1;
}
.j2f__scrollbox{
overflow: auto;
background-image:
linear-gradient(to right, white, white),
linear-gradient(to right, white, white),
linear-gradient(to right, rgba(0, 0, 0, 0.2), rgba(255, 255, 255, 0)),
linear-gradient(to left, rgba(0, 0, 0, 0.2), rgba(255, 255, 255, 0));
background-position: left center, right center, left center, right center;
background-repeat: no-repeat;
background-color: white;
background-size: 20px 100%, 20px 100%, 10px 100%, 10px 100%;
z-index: 1;
background-attachment: local, local, scroll, scroll;
}
.j2f__box {
border: 1px solid #ddd;
border-radius: 3px;
padding: 8px;
margin: 2px;
}
.j2f__toggle {
color: gray;
display: flex;
justify-content: center;
align-items: center;
padding: 8px;
width: 40px;
height: 40px;
cursor: pointer;
}
.j2f__toggle.fa-toggle-on {
color: green;
}
.j2f__btn {
display: inline-flex;
justify-content: space-between;
background: rgb(60, 60, 60);
color: white;
font-size: 1em;
line-height: 1em;
cursor: pointer;
padding: 0.5em 0.6em;
border: none;
border-radius: 0.25em;
box-shadow: 0px 0.125em 0px 0px black;
margin: 0.25em;
margin-bottom: 0.375em;
}
.j2f__btn.hover:hover {
background-color: rgb(80, 80, 80);
}
.j2f__btn:active{
position:relative;
top: 0.125em;
box-shadow: 0px -0.125em 0px 0px rgb(222, 222, 222);
}
.j2f__btn[disabled]{
opacity: 0.4;
cursor: not-allowed;
}
.j2f__btn[disabled]:active{
position:relative;
top: 0;
box-shadow: 0px 0.125em 0px 0px black;
}