monkey-style-guide-v2 0.0.31 → 0.0.33

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,3 +1,5 @@
1
+ /* stylelint-disable property-no-vendor-prefix */
2
+
1
3
  /** ************************
2
4
  * Copyright Monkey Exchange. All Rights Reserved
3
5
  * This style guide was developed by Monkey Exchange Team
@@ -36,8 +38,5 @@ input[type='date'] {
36
38
  input[type='date']::-webkit-calendar-picker-indicator {
37
39
  display: none;
38
40
  -webkit-appearance: none;
39
- }
40
-
41
- input[type='date']::-webkit-calendar-picker-indicator {
42
41
  opacity: 0;
43
42
  }
@@ -8,7 +8,15 @@
8
8
  /* stylelint-disable selector-class-pattern */
9
9
  @use 'variables' as *;
10
10
 
11
+ body {
12
+ margin: 0;
13
+ padding: 0;
14
+ background-color: var(--mecx-color-white);
15
+ }
16
+
11
17
  :root {
18
+ background-color: var(--mecx-color-white);
19
+
12
20
  @each $key, $value in $mecx-gray {
13
21
  --mecx-color-gray-#{$key}: #{$value};
14
22
  }
@@ -10,3 +10,4 @@
10
10
  @use 'scrollbars';
11
11
  @use 'skeleton-loading';
12
12
  @use 'helper-classes';
13
+ @use 'popover';
@@ -0,0 +1,3 @@
1
+ monkey-popover-content {
2
+ margin-top: 3px;
3
+ }
@@ -21,10 +21,16 @@
21
21
  }
22
22
  }
23
23
 
24
+ .text-loading-xs {
25
+ @extend %skeleton;
26
+
27
+ height: 13px;
28
+ }
29
+
24
30
  .text-loading-sm {
25
31
  @extend %skeleton;
26
32
 
27
- height: 12px;
33
+ height: 14px;
28
34
  }
29
35
 
30
36
  .text-loading-md {
@@ -7,7 +7,7 @@
7
7
  ************************* */
8
8
  @use '@angular/cdk/overlay-prebuilt.css';
9
9
  @use './partials';
10
- @use './typography';
11
10
  @use './input';
12
11
  @use './directives';
13
12
  @use './table';
13
+ @use './typography';
@@ -1,194 +1,5 @@
1
- /** ************************
2
- * Copyright Monkey Exchange. All Rights Reserved
3
- * This style guide was developed by Monkey Exchange Team
4
- * MIT Licence
5
- ************************* */
6
-
7
- @use '../partials/variables';
8
-
9
1
  * {
10
2
  font-family: var(--mecx-font-name), arial, sans-serif;
11
3
  -webkit-font-smoothing: auto;
12
4
  -moz-osx-font-smoothing: auto;
13
5
  }
14
-
15
- body {
16
- margin: 0;
17
- padding: 0;
18
- background-color: var(--mecx-color-white);
19
- }
20
-
21
- h1 {
22
- // @include mecx-font(
23
- // (
24
- // size: f-size(xxl)
25
- // )
26
- // );
27
- }
28
-
29
- h2 {
30
- // @include mecx-font(
31
- // (
32
- // size: f-size(xl)
33
- // )
34
- // );
35
- }
36
-
37
- h3 {
38
- // @include mecx-font(
39
- // (
40
- // size: f-size(lg)
41
- // )
42
- // );
43
- }
44
-
45
- h4 {
46
- // @include mecx-font(
47
- // (
48
- // size: f-size(md)
49
- // )
50
- // );
51
- }
52
-
53
- h5 {
54
- // @include mecx-font(
55
- // (
56
- // size: f-size(sm)
57
- // )
58
- // );
59
- }
60
-
61
- h6 {
62
- // @include mecx-font;
63
- }
64
-
65
- p {
66
- // @include mecx-font;
67
- }
68
-
69
- a {
70
- // text-decoration: none;
71
- // cursor: pointer;
72
-
73
- // @include mecx-font(
74
- // (
75
- // color: var(--mecx-color-link)
76
- // )
77
- // );
78
-
79
- // &:hover {
80
- // text-decoration: underline;
81
- // }
82
- }
83
-
84
- .bg {
85
- // @include gray-cl('background-color');
86
- // @include theme-cl('background-color');
87
- // @include warning-cl('background-color');
88
- // @include success-cl('background-color');
89
- }
90
-
91
- .txt {
92
- // @include gray-cl;
93
- // @include theme-cl;
94
- // @include warning-cl;
95
- // @include success-cl;
96
- // @include error-cl;
97
- // @include align;
98
- // @include sizes;
99
- // @include weight;
100
- // @include line-height;
101
-
102
- &-none {
103
- text-decoration: none;
104
- }
105
-
106
- &-underline {
107
- text-decoration: underline;
108
- }
109
-
110
- &-upper {
111
- text-transform: uppercase;
112
- }
113
-
114
- &-lower {
115
- text-transform: lowercase;
116
- }
117
-
118
- &-capitalize {
119
- text-transform: capitalize;
120
- }
121
-
122
- &-shadow {
123
- // text-shadow: 2px 2px 4px;
124
- // color: f-cl-gray(700);
125
- }
126
- }
127
-
128
- .mecx-title-page {
129
- // @include mecx-font(
130
- // (
131
- // size: f-size(xl),
132
- // weight: f-weight(bold),
133
- // height: f-lh(super),
134
- // color: f-cl-gray(900)
135
- // )
136
- // );
137
-
138
- // font-style: normal;
139
- }
140
-
141
- .mecx-subtitle-page {
142
- // @include mecx-font(
143
- // (
144
- // size: f-size(xs),
145
- // weight: f-weight(regular),
146
- // height: f-lh(med),
147
- // color: f-cl-gray(700)
148
- // )
149
- // );
150
-
151
- // font-style: normal;
152
- // letter-spacing: 0.48px;
153
- }
154
-
155
- .mecx-description {
156
- // @include mecx-font(
157
- // (
158
- // size: f-size(xs),
159
- // weight: f-weight(regular),
160
- // height: f-lh(md)
161
- // )
162
- // );
163
- }
164
-
165
- .mecx-title {
166
- // @include mecx-font(
167
- // (
168
- // size: f-size(xxs),
169
- // weight: f-weight(regular),
170
- // height: f-lh(md),
171
- // color: f-cl-gray(700)
172
- // )
173
- // );
174
- }
175
-
176
- .mecx-value {
177
- // @include mecx-font(
178
- // (
179
- // size: f-size(xxs),
180
- // weight: f-weight(regular),
181
- // height: f-lh(md)
182
- // )
183
- // );
184
- }
185
-
186
- .mecx-label {
187
- // @include mecx-font(
188
- // (
189
- // size: f-size(xxs),
190
- // weight: f-weight(regular),
191
- // height: f-lh(md)
192
- // )
193
- // );
194
- }