blob: 9371764c7c35cd1ac00eec176eba99650ee6b149 (
plain)
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
|
.top-bar{
line-height: 40px;
background-color: $dark-grey;
overflow-y: auto;
padding-top: 5px;
padding-bottom: 5px;
}
.top-bar__user-area {
margin-right: 20px;
vertical-align: middle;
}
.username {
display: inline-block;
text-align: right;
}
.profile-circle{
border-radius: 50%;
width: 30px;
height: 30px;
background: $cyan;
display: none;
}
.profile-initials {
display: inline-block;
color: $light-grey;
font-size: $h4-size;
position: relative;
left: -27px;
top: -10px;
}
.profile-username {
color: $light-grey;
}
#top-bar_float-left {
float: left;
margin-left: 40px;
}
#top-bar_float-right {
float: right;
margin-right: 20px;
}
#rzdoc-bar {
color: $light-grey;
position: relative;
overflow-x: auto;
margin-right: 20px;
min-width: 250px;
}
#rzdoc-bar_doc-label {
font-family: $semibold-font-family;
font-size: $h3-size;
font-weight: bold;
}
#logo-3rd-party__CRI {
background-color: white;
border-radius: 3px;
height: 25px;
padding: 2px;
vertical-align: middle;
}
|