-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.css
More file actions
120 lines (108 loc) · 1.83 KB
/
app.css
File metadata and controls
120 lines (108 loc) · 1.83 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
120
html { background-color: #888; color: #555; font-size: 11px; }
html, body { margin: 0; padding: 0; height:100%; }
body { background-color: inherit; }
canvas { margin-right: 0.5em; margin-bottom: 0.5em; }
#app {
display: flex;
flex-flow: row wrap;
width:100%;
height:100%;
margin:0;
padding:0;
}
.settings {
display:none;
width:100%;
padding-top:3em;
background-color:#eee;
}
.settings .opt {
cursor: pointer;
}
.settings .opt:after {
content: " | ";
font-weight:normal;
}
.settings .opt:last-child:after {
content: "";
font-weight:normal;
}
.settings .opt.selected {
font-weight:600;
}
.settings h2,
.settings h3 {
font-size: 120%;
}
.settings h2 {
font-weight:700;
}
.nav li {
cursor: default;
}
.nav-tabs>li.active>a, .nav-tabs>li.active>a:focus, .nav-tabs>li.active>a:hover {
font-weight:700;
}
.nav-tabs>li>a, .nav-tabs>li>a:focus, .nav-tabs>li>a:hover {
/*color:#555;*/
color:inherit;
font-weight:600;
}
.unavailable {
background-color:#aaa;
}
.assigned {
font-weight: 100;
}
.viewer {
}
div.underlay {
position:absolute;
left:0px;
top:0px;
width:100%;
height:100%;
pointer-events:none;
}
.drag-hover {
/*
position: absolute;
top:0;
bottom:0;
left:0;
right:0;
*/
border:0.25em dashed rgba(255, 238, 238, 0.75);
}
#app > div.tools {
position: fixed;
top: 0;
left: 0;
padding: 0.25em;
background-color: #eee;
border-radius:0 0 0.25em 0;
opacity: 0.5;
}
#app > div.tools:hover, body > div.tools:active {
opacity: 1.0;
}
#app > div.tools > * {
display: inline-block;
padding:0.5em;
}
#app > div.tools ul.dropdown-menu {
display: none;
}
#version {
display:none;
position: absolute;
top: 2px;
right: 2px;
font-weight: 100;
}
.settings-menu li .glyphicon-ok {
display: none;
}
.settings-menu li .enabled .glyphicon-ok {
display: inline-block;
}