Skip to content
This repository was archived by the owner on May 5, 2023. It is now read-only.

Commit 90c7a8c

Browse files
committed
conflicts resoved
2 parents 28df5bf + 0693374 commit 90c7a8c

4 files changed

Lines changed: 34 additions & 8 deletions

File tree

src/lib/eccentric.css

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/lib/eccentric.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/lib/eccentric.scss

Lines changed: 19 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ body {
6262
}
6363

6464
/// button method - primary-button, default button property
65-
.et-button, button, .et-primaryButton {
65+
.et-button, button, .et-primaryButton{
6666
color: white;
6767
background-color: var(--et-blue-primary);
6868
padding: 0.6em;
@@ -115,6 +115,18 @@ button:focus {
115115
line-height: inherit;
116116
}
117117

118+
119+
.et-button-deactivated{
120+
background-color: var(--et-gray-primary);
121+
color: var(--et-black);
122+
}
123+
124+
.et-button-deactivated-secondary{
125+
background-color: var(--et-gray-secondary);
126+
color: var(--et-black);
127+
border: var(--et-black) solid;
128+
border-width: 2px;
129+
}
118130
// Heading Method - Combined button Property
119131

120132
h1, .et-h1, h2, .et-h2, h3, .et-h3, h4, .et-h4, h5, .et-h5, h6, .et-h6 {
@@ -124,34 +136,34 @@ h1, .et-h1, h2, .et-h2, h3, .et-h3, h4, .et-h4, h5, .et-h5, h6, .et-h6 {
124136
}
125137

126138
// heading method - (h1)
127-
h1, .et-h1{
139+
h1, .et-h1 {
128140
font-size: 45.3px;
129141
font-weight: 600;
130142
}
131143

132144
// heading method - (h2)
133-
h2, .et-h2{
145+
h2, .et-h2 {
134146
font-size: 38.3px;
135147
}
136148

137149
// heading method - (h3)
138-
h3, .et-h3{
150+
h3, .et-h3 {
139151
font-size: 29.12px;
140152
font-weight: 600;
141153
}
142154

143155
// heading method - (h4)
144-
h4, .h4{
156+
h4, .h4 {
145157
font-size: 22.65px;
146158
}
147159

148160
// heading method - (h5)
149-
h5, .et-h5{
161+
h5, .et-h5 {
150162
font-size: 16.18px;
151163
font-weight: 600;
152164
}
153165

154166
// heading method - (h6)
155-
h6, .et-h6{
167+
h6, .et-h6 {
156168
font-size: 12.94px;
157169
}

src/tests/__buttons.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,7 @@
1212
<button class="et-button-danger et-hover">Close this Task</button>
1313
<button class="et-button-valid">Save Changes</button>
1414
<button class="et-button-warning">Check Notifications</button>
15+
<button class="et-button-deactivated">Button</button>
16+
<button class="et-button-deactivated-secondary">deactivated</button>
1517
</body>
1618
</html>

0 commit comments

Comments
 (0)