-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathsession-toolbar.component.scss
More file actions
82 lines (71 loc) · 1.49 KB
/
session-toolbar.component.scss
File metadata and controls
82 lines (71 loc) · 1.49 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
:host {
display: flex;
flex-direction: column;
width: 100%;
background: #F9F9F9 url('../../../../../assets/images/session_background.png');
}
:host ::ng-deep .separator {
border: solid 1px var(--border-secondary-color);
width: 0;
height: 14px;
margin: 0 8px;
}
.session-toolbar {
display: flex;
width: 100%;
height: 44px;
padding: 8px;
justify-content: space-between;
align-items: center;
background: var(--bg-secondary-color);
}
.session-toolbar-middle-group {
display: flex;
align-items: center;
justify-content: center;
flex: 1;
}
.session-toolbar-right-group, .session-toolbar-left-group {
display: flex;
align-items: center;
}
.session-toolbar ::ng-deep .p-button {
border: none;
border-radius: 4px;
background-color: transparent;
}
.session-toolbar ::ng-deep .p-button:hover {
background: #0068C31A;
}
.session-toolbar ::ng-deep .p-button .p-button-label {
color: #000000CC;
font-family: Open Sans;
font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
.session-toolbar ::ng-deep .p-button .p-button-icon-left {
display: flex;
align-items: center;
color: #0068C3;
margin-right: 8px;
height: 16px;
width: 16px;
}
.session-toolbar-layer {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 1000;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.session-form {
display: flex;
flex-direction: column;
height: 100%;
}
::ng-deep .p-button-inactive .p-button-icon {
color: gray !important;
}