-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdesktop.css
More file actions
112 lines (112 loc) · 1.96 KB
/
Copy pathdesktop.css
File metadata and controls
112 lines (112 loc) · 1.96 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
.hideScrollBars {
-ms-overflow-style: -ms-autohiding-scrollbar;
}
.hideScrollBars::-webkit-scrollbar {
display: none!important;
}
.desktop {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
.window-area {
height: 100%;
position: relative;
}
.task-bar {
position:fixed;
bottom: 0;
left: 0;
right: 0;
display: flex;
flex-flow: row nowrap;
height: 42px;
background-color: #053046;
}
.task-bar .task-bar-section {
height: 100%;
width: auto;
display: flex;
flex-flow: row nowrap;
}
.task-bar .task-bar-item {
position: relative;
display: block;
width: 52px;
height: 40px;
margin: 0;
padding: 0;
background-color: transparent;
border: none;
cursor: default;
color: #ffffff;
vertical-align: middle;
text-align: center;
min-width: 0;
outline: none;
}
.task-bar .task-bar-item * {
display: block;
margin: 8px 14px;
height: 24px;
width: 24px;
font-size: 18px;
line-height: 24px;
vertical-align: middle;
}
.task-bar .task-bar-item:hover {
background-color: rgba(255, 255, 255, 0.1);
}
.task-bar .task-bar-item.active {
background-color: rgba(255, 255, 255, 0.3);
}
.task-bar .task-bar-item.started::after {
display: block;
content: "";
position: absolute;
bottom: 0;
left: 5px;
right: 5px;
height: 3px;
background-color: #5ebdec;
transition: all .3s ease;
}
.task-bar .task-bar-item.started:hover::after {
left: 1px;
right: 1px;
transition: all .3s ease;
}
.task-bar .task-bar-item:active,
.task-bar .task-bar-item.focus,
.task-bar .task-bar-item:focus {
box-shadow: none!important;
}
.task-bar.icons-small {
height: 30px;
padding: 0;
}
.task-bar.icons-small .task-bar-item {
width: 16px;
height: 16px;
margin: 0 8px;
}
.task-bar a.task-bar-item {
color: #ffffff;
}
.task-bar a.task-bar-item:hover {
color: #ffffff;
}
.window_wrapper {
width: 100%;
height: 100%;
}
.no-overflow {
overflow: hidden!important;
}
iframe {
position: relative;
height: 100%;
width: 100%;
}