blob: b454d3496bae4fa5d196aa08d0f225f21d8857f1 (
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
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
|
.version-controller-bar {
display: flex;
min-height: 57px;
border-bottom: 1px solid $tlv-light-gray;
background-color: transparent;
.vc-container {
display: flex;
flex: 1;
align-self: center;
background-color: transparent;
justify-content: space-between;
padding-left: 16px;
padding-right: 40px;
.version-status-container {
display: flex;
height: 30px;
.version-selector {
border: none;
margin-top: 7px;
padding-right: 10px;
margin-right: 15px;
margin-left: 10px;
@extend .body-1;
}
.version-section {
.form-group {
margin-right: 20px;
.input-options {
border: none;
.input-options-select {
padding-top: 4px;
}
}
}
}
.vc-status {
display: flex;
padding-left: 20px;
border-left: $light-gray thin solid;
.status-text {
align-self: center;
margin-top: 2px;
@extend .heading-5;
color: $dark-gray;
}
}
}
.save-submit-cancel-container {
display: flex;
height: 30px;
.action-buttons {
display: flex;
padding: 0 13px;
.version-control-buttons {
display: flex;
}
.action-buttons-svg {
padding-top: 5px;
margin-right: 20px;
padding-bottom: 5px;
.versionControllerLockClosed {
fill: $dark-gray;
width: 21px;
height: 23px;
margin-top: -3px;
&.disabled {
fill: $light-gray;
}
&:hover {
fill: $black;
}
}
.versionControllerLockOpen {
fill: $dark-gray;
width: 24px;
height: 28px;
margin-top: -6px;
&:hover {
fill: $black;
}
}
.versionControllerSubmit {
fill: $blue;
&.disabled {
fill: $light-gray;
}
&:hover {
fill: $dark-blue;
}
}
.versionControllerRevert {
fill: $dark-gray;
&.disabled {
fill: $light-gray;
}
&:hover {
fill: $black;
}
}
.versionControllerSave {
fill: $dark-gray;
&.disabled {
fill: $light-gray;
}
&:hover {
fill: $black;
}
}
}
}
.vc-nav-item-close {
display: flex;
padding-left: 18px;
padding-top: 3px;
align-self: center;
@extend .body-1;
color: $gray;
cursor: pointer;
border-left: $gray thin solid;
}
}
}
}
|