testio-tailwind 1.1.2 → 2.0.1

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.
Files changed (46) hide show
  1. package/.eleventy.js +2 -5
  2. package/README.md +1 -37
  3. package/icon-classes-extractor.js +3 -3
  4. package/index.html +122 -73
  5. package/package.json +13 -29
  6. package/src/_includes/head.njk +3 -3
  7. package/src/assets/images/pencil.svg +11 -0
  8. package/src/assets/stylesheets/app.css +94 -69
  9. package/src/assets/stylesheets/components/alerts.css +1 -1
  10. package/src/assets/stylesheets/components/cards.css +9 -9
  11. package/src/assets/stylesheets/components/chat.css +9 -6
  12. package/src/assets/stylesheets/components/customer/customer_productcards.css +3 -3
  13. package/src/assets/stylesheets/components/devices.css +1 -1
  14. package/src/assets/stylesheets/components/forms.css +3 -10
  15. package/src/assets/stylesheets/components/header.css +1 -2
  16. package/src/assets/stylesheets/components/icons.css +25 -5
  17. package/src/assets/stylesheets/components/list_item.css +1 -2
  18. package/src/assets/stylesheets/components/lists.css +1 -2
  19. package/src/assets/stylesheets/components/loading_spinner.css +61 -79
  20. package/src/assets/stylesheets/components/metasidebar.css +1 -2
  21. package/src/assets/stylesheets/components/notifications.css +1 -1
  22. package/src/assets/stylesheets/components/select.css +1 -1
  23. package/src/assets/stylesheets/components/select2.css +1 -1
  24. package/src/assets/stylesheets/components/splitview.css +6 -6
  25. package/src/assets/stylesheets/components/tables.css +18 -18
  26. package/src/assets/stylesheets/components/tags.css +10 -3
  27. package/src/assets/stylesheets/components/test_header.css +3 -3
  28. package/src/assets/stylesheets/components/tester/tester_cards.css +4 -4
  29. package/src/assets/stylesheets/components/trix_editor.css +3 -3
  30. package/src/assets/stylesheets/components/typography.css +12 -11
  31. package/src/assets/stylesheets/tailwind_config.css +299 -0
  32. package/src/assets/stylesheets/tailwind_custom_utilities.css +268 -0
  33. package/src/index.pug +8 -39
  34. package/src/pages/components/banner_cards.haml +0 -10
  35. package/src/pages/components/loading_spinner.haml +5 -5
  36. package/src/pages/forms/search.haml +2 -2
  37. package/src/pages/icons/index.njk +35 -2
  38. package/src/static/icons.json +1 -0
  39. package/src/static/site.webmanifest +2 -2
  40. package/src/assets/stylesheets/postcss.config.js +0 -24
  41. package/src/assets/stylesheets/tailwind.config.js +0 -346
  42. /package/src/{static → assets/images}/android-chrome-192x192.png +0 -0
  43. /package/src/{static → assets/images}/android-chrome-512x512.png +0 -0
  44. /package/src/{static → assets/images}/apple-touch-icon.png +0 -0
  45. /package/src/{static → assets/images}/favicon-16x16.png +0 -0
  46. /package/src/{static → assets/images}/favicon-32x32.png +0 -0
@@ -1,79 +1,104 @@
1
- @import "components/reset";
2
1
 
3
- @import "tailwindcss/base";
4
- @import "tailwindcss/components";
2
+ @import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');
3
+ @import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro&display=swap');
5
4
 
6
- @import "tom-select/dist/css/tom-select.css";
7
- @import "select2/dist/css/select2.css";
8
- @import "trix/dist/trix.css";
5
+ @import "tailwindcss";
6
+ @import './tailwind_config.css';
7
+ @import './tailwind_custom_utilities.css';
9
8
 
10
- @import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,300;0,400;0,600;0,700;0,900;1,400;1,600;1,700;1,900&display=swap');
11
- @import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro&display=swap');
9
+ @import './components/reset.css' layer(base);
10
+
11
+ @import 'tom-select/dist/css/tom-select.css' layer(components);
12
+ @import 'select2/dist/css/select2.css' layer(components);
13
+ @import 'trix/dist/trix.css' layer(components);
14
+
15
+
16
+ @import './components/actionbar.css' layer(components);
17
+ @import './components/buttons.css' layer(components);
18
+ @import './components/cards.css' layer(components);
19
+ @import './components/header.css' layer(components);
20
+ @import './components/layout.css' layer(components);
21
+ @import './components/sidebar.css' layer(components);
22
+ @import './components/icons.css' layer(components);
23
+ @import './components/iconfont.css' layer(components);
24
+ @import './components/popover.css' layer(components);
25
+ @import './components/typography.css' layer(components);
26
+ @import './components/lists.css' layer(components);
27
+ @import './components/sections.css' layer(components);
28
+ @import './components/dropdown.css' layer(components);
29
+ @import './components/list_item.css' layer(components);
30
+ @import './components/task_issue_item.css' layer(components);
31
+ @import './components/devices.css' layer(components);
32
+ @import './components/images.css' layer(components);
33
+ @import './components/banner_card.css' layer(components);
34
+ @import './components/toggleswitch.css' layer(components);
35
+ @import './components/selectable_token.css' layer(components);
36
+ @import './components/checkboxes_radiobuttons.css' layer(components);
37
+ @import './components/form_grid.css' layer(components);
38
+ @import './components/form_card.css' layer(components);
39
+ @import './components/forms.css' layer(components);
40
+ @import './components/search.css' layer(components);
41
+ @import './components/tom_select.css' layer(components);
42
+ @import './components/trix_editor.css' layer(components);
43
+ @import './components/uploads.css' layer(components);
44
+ @import './components/radio_tabs.css' layer(components);
45
+ @import './components/user_item.css' layer(components);
46
+ @import './components/alerts.css' layer(components);
47
+ @import './components/tags.css' layer(components);
48
+ @import './components/markdown_trix_styles.css' layer(components);
49
+ @import './components/tabs.css' layer(components);
50
+ @import './components/drawer.css' layer(components);
51
+ @import './components/modals.css' layer(components);
52
+ @import './components/progress.css' layer(components);
53
+ @import './components/loading_spinner.css' layer(components);
54
+ @import './components/test_item.css' layer(components);
55
+ @import './components/metrics.css' layer(components);
56
+ @import './components/resultmodule.css' layer(components);
57
+ @import './components/chat.css' layer(components);
58
+ @import './components/emptystate_message.css' layer(components);
59
+ @import './components/splitview.css' layer(components);
60
+ @import './components/tables.css' layer(components);
61
+ @import './components/metasidebar.css' layer(components);
62
+ @import './components/notifications.css' layer(components);
63
+ @import './components/select2.css' layer(components);
64
+ @import './components/select.css' layer(components);
65
+ @import './components/test_header.css' layer(components);
66
+ @import './components/ratingscale.css' layer(components);
12
67
 
68
+ @import './components/customer/customer_header.css' layer(components);
69
+ @import './components/customer/customer_sidebar.css' layer(components);
70
+ @import './components/customer/customer_productcards.css' layer(components);
13
71
 
14
- @import "components/actionbar";
15
- @import "components/buttons";
16
- @import "components/cards";
17
- @import "components/header";
18
- @import "components/layout";
19
- @import "components/sidebar";
20
- @import "components/icons";
21
- @import "components/iconfont";
22
- @import "components/popover";
23
- @import "components/typography";
24
- @import "components/lists";
25
- @import "components/sections";
26
- @import "components/dropdown";
27
- @import "components/list_item";
28
- @import "components/task_issue_item";
29
- @import "components/devices";
30
- @import "components/images";
31
- @import "components/banner_card";
32
- @import "components/toggleswitch";
33
- @import "components/selectable_token";
34
- @import "components/checkboxes_radiobuttons";
35
- @import "components/form_grid";
36
- @import "components/form_card";
37
- @import "components/forms";
38
- @import "components/search";
39
- @import "components/tom_select";
40
- @import "components/trix_editor";
41
- @import "components/uploads";
42
- @import "components/radio_tabs";
43
- @import "components/user_item";
44
- @import "components/alerts";
45
- @import "components/tags";
46
- @import "components/markdown_trix_styles";
47
- @import "components/tabs";
48
- @import "components/drawer";
49
- @import "components/modals";
50
- @import "components/progress";
51
- @import "components/loading_spinner";
52
- @import "components/test_item";
53
- @import "components/metrics";
54
- @import "components/resultmodule";
55
- @import "components/chat";
56
- @import "components/emptystate_message";
57
- @import "components/splitview";
58
- @import "components/tables";
59
- @import "components/metasidebar";
60
- @import "components/notifications";
61
- @import "components/select2";
62
- @import "components/select";
63
- @import "components/test_header";
64
- @import "components/ratingscale";
72
+ @import './components/tester/tester_header.css' layer(components);
73
+ @import './components/tester/tester_sidebar.css' layer(components);
74
+ @import './components/tester/tester_cards.css' layer(components);
65
75
 
66
- @import "components/customer/customer_header";
67
- @import "components/customer/customer_sidebar";
68
- @import "components/customer/customer_productcards";
76
+ @import './components/manager/manager_header.css' layer(components);
77
+ @import './components/manager/manager_sidebar.css' layer(components);
69
78
 
70
- @import "components/tester/tester_header";
71
- @import "components/tester/tester_sidebar";
72
- @import "components/tester/tester_cards";
79
+ @import './components/designsystem/designsystem-styles.css' layer(components);
73
80
 
74
- @import "components/manager/manager_header";
75
- @import "components/manager/manager_sidebar";
81
+ /*
82
+ The default border color has changed to `currentcolor` in Tailwind CSS v4,
83
+ so we've added these compatibility styles to make sure everything still
84
+ looks the same as it did with Tailwind CSS v3.
76
85
 
77
- @import "components/designsystem/designsystem-styles";
86
+ If we ever want to remove these styles, we need to add an explicit border
87
+ color utility to any element that depends on these defaults.
88
+ */
89
+ @layer base {
90
+ *,
91
+ ::after,
92
+ ::before,
93
+ ::backdrop,
94
+ ::file-selector-button {
95
+ border-color: var(--color-gray-200, currentcolor);
96
+ }
97
+ }
78
98
 
79
- @import "tailwindcss/utilities";
99
+ .source-sans-3-<uniquifier> {
100
+ font-family: "Source Sans 3", sans-serif;
101
+ font-optical-sizing: auto;
102
+ font-weight: <weight>;
103
+ font-style: normal;
104
+ }
@@ -18,7 +18,7 @@
18
18
  }
19
19
 
20
20
  .alert .close:hover, .alert .close:focus {
21
- @apply text-white bg-link-hover outline-none;
21
+ @apply text-white bg-link-hover outline-hidden;
22
22
  .icon {
23
23
  @apply text-white;
24
24
  }
@@ -1,13 +1,13 @@
1
1
  .grid-cards-achievements {
2
2
  @apply grid gap-grid-gutter;
3
3
  grid-template-columns: 1fr 1fr;
4
- @screen lg {
4
+ @media (width >= theme(--breakpoint-lg)) {
5
5
  grid-template-columns: 1fr 1fr 1fr;
6
6
  }
7
- @screen xl {
7
+ @media (width >= theme(--breakpoint-xl)) {
8
8
  grid-template-columns: 1fr 1fr 1fr 1fr;
9
9
  }
10
- @screen 2xl {
10
+ @media (width >= theme(--breakpoint-2xl)) {
11
11
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
12
12
  }
13
13
  }
@@ -15,16 +15,16 @@
15
15
  .grid-cards {
16
16
  @apply grid gap-grid-gutter;
17
17
  grid-template-columns: 1fr;
18
- @screen sm {
18
+ @media (width >= theme(--breakpoint-sm)) {
19
19
  grid-template-columns: 1fr 1fr;
20
20
  }
21
- @screen lg {
21
+ @media (width >= theme(--breakpoint-lg)) {
22
22
  grid-template-columns: 1fr 1fr 1fr;
23
23
  }
24
- @screen xl {
24
+ @media (width >= theme(--breakpoint-xl)) {
25
25
  grid-template-columns: 1fr 1fr 1fr 1fr;
26
26
  }
27
- @screen 2xl {
27
+ @media (width >= theme(--breakpoint-2xl)) {
28
28
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
29
29
  }
30
30
  }
@@ -46,14 +46,14 @@
46
46
  }
47
47
 
48
48
  .card-title {
49
- @apply block overflow-ellipsis text-heading-5 leading-5;
49
+ @apply block text-ellipsis text-heading-5 leading-5;
50
50
  }
51
51
 
52
52
  .card.card-sm {
53
53
  @apply w-full sm:w-card-sm;
54
54
 
55
55
  .card-title {
56
- @apply block overflow-ellipsis text-heading-5 leading-5 text-center;
56
+ @apply block text-ellipsis text-heading-5 leading-5 text-center;
57
57
  }
58
58
  }
59
59
 
@@ -70,7 +70,8 @@ img.chat-avatar {
70
70
  justify-content: center;
71
71
  padding: 0;
72
72
  .icon {
73
- @apply h-icon-xs text-icon-xs;
73
+ height: var(--font-size-icon-xs);
74
+ font-size: var(--font-size-icon-xs);
74
75
  }
75
76
  }
76
77
 
@@ -91,7 +92,9 @@ img.chat-avatar {
91
92
  @apply text-white border-0 bg-link-hover;
92
93
  }
93
94
  .icon {
94
- @apply h-icon-xs text-icon-xs mr-xxs;
95
+ @apply mr-xxs;
96
+ height: var(--font-size-icon-xs);
97
+ font-size: var(--font-size-icon-xs);
95
98
  }
96
99
  }
97
100
 
@@ -122,14 +125,14 @@ img.chat-avatar {
122
125
  }
123
126
 
124
127
  .chat-message-item.your-message .chat-message-addons .btn {
125
- @apply text-white bg-gray bg-opacity-25;
128
+ @apply text-white bg-gray;
126
129
  &:hover, &:focus, &:active {
127
130
  @apply text-white bg-link-hover;
128
131
  }
129
132
  }
130
133
 
131
134
  .chat-message-item.your-message .chat-message-addons .tag-item {
132
- @apply text-white bg-gray bg-opacity-25;
135
+ @apply text-white bg-gray;
133
136
  }
134
137
 
135
138
  .chat-message-item.your-message .chat-actions .dropdown-actions[open] .dropdown-menu,
@@ -143,14 +146,14 @@ img.chat-avatar {
143
146
  }
144
147
 
145
148
  .chat-message-item.announcement .chat-message-addons .btn {
146
- @apply text-white bg-gray bg-opacity-25;
149
+ @apply text-white bg-gray backdrop-opacity-25;
147
150
  &:hover, &:focus, &:active {
148
151
  @apply text-white bg-link-hover;
149
152
  }
150
153
  }
151
154
 
152
155
  .chat-message-item.announcement .chat-message-addons .tag-item {
153
- @apply text-white bg-gray bg-opacity-25;
156
+ @apply text-white bg-gray;
154
157
  }
155
158
 
156
159
 
@@ -1,12 +1,12 @@
1
1
  .grid-productcards {
2
2
  @apply grid gap-grid-gutter;
3
- @screen sm {
3
+ @media (width >= theme(--breakpoint-sm)) {
4
4
  grid-template-columns: 1fr 1fr;
5
5
  }
6
- @screen xl {
6
+ @media (width >= theme(--breakpoint-xl)) {
7
7
  grid-template-columns: 1fr 1fr 1fr;
8
8
  }
9
- @screen 3xl {
9
+ @media (width >= theme(--breakpoint-3xl)) {
10
10
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
11
11
  }
12
12
  }
@@ -20,7 +20,7 @@
20
20
  }
21
21
 
22
22
  .device.outline {
23
- @apply p-sm border border-bordercolor rounded outline-none;
23
+ @apply p-sm border border-bordercolor rounded outline-hidden;
24
24
  }
25
25
 
26
26
  .device-icon {
@@ -3,7 +3,7 @@
3
3
  }
4
4
 
5
5
  .form-label {
6
- @apply text-label text-label leading-tight;
6
+ @apply text-label leading-tight;
7
7
 
8
8
  &.optional::after {
9
9
  content: "(optional)";
@@ -26,7 +26,7 @@
26
26
 
27
27
  .form-control,
28
28
  .form-control-static {
29
- @apply h-btn w-full text-base border border-bordercolor;
29
+ @apply h-btn w-full px-sm py-xxs text-base border border-bordercolor rounded;
30
30
  }
31
31
 
32
32
  .form-check .field_with_errors input[type="checkbox"],
@@ -71,14 +71,7 @@
71
71
  }
72
72
 
73
73
  textarea.form-control {
74
- @apply h-auto min-h-btn;
75
- }
76
-
77
- .form-control-search {
78
- /* padding-right: ($input-padding-x * 3);
79
- background-repeat: no-repeat;
80
- background-position: center right ($input-height * .25);
81
- background-size: ($input-height * .50) ($input-height * .50); */
74
+ @apply h-auto min-h-btn pt-xs;
82
75
  }
83
76
 
84
77
  .form-control-label {
@@ -1,4 +1,3 @@
1
-
2
1
  .header {
3
2
  @apply h-header flex items-center bg-header;
4
3
  grid-area: header;
@@ -70,7 +69,7 @@
70
69
  content: url("/assets/images/logo-testio/testio_horizontal_tealpurple_white.svg");
71
70
  height: 13px;
72
71
  width: 74px;
73
- @screen sm {
72
+ @media (width >= theme(--breakpoint-sm)) {
74
73
  @apply h-md;
75
74
  width: 128px;
76
75
  }
@@ -2,23 +2,43 @@
2
2
  /*/ Icon sizes and spacing /*/
3
3
 
4
4
  .icon {
5
- @apply h-icon text-icon align-bottom;
5
+ height: var(--font-size-icon);
6
+ font-size: var(--font-size-icon);
7
+ }
8
+
9
+ .icon-xxs {
10
+ height: var(--font-size-icon-xxs);
11
+ font-size: var(--font-size-icon-xxs);
6
12
  }
7
13
 
8
14
  .icon-xs {
9
- @apply h-icon-xs text-icon-xs;
15
+ height: var(--font-size-icon-xs);
16
+ font-size: var(--font-size-icon-xs);
17
+ }
18
+
19
+ .icon-xs {
20
+ height: var(--font-size-icon-xs);
21
+ font-size: var(--font-size-icon-xs);
10
22
  }
11
23
 
12
24
  .icon-sm {
13
- @apply h-icon-sm text-icon-sm;
25
+ height: var(--font-size-icon-sm);
26
+ font-size: var(--font-size-icon-sm);
14
27
  }
15
28
 
16
29
  .icon-lg {
17
- @apply h-icon-lg text-icon-lg;
30
+ height: var(--font-size-icon-lg);
31
+ font-size: var(--font-size-icon-lg);
18
32
  }
19
33
 
20
34
  .icon-xl {
21
- @apply h-icon-xl text-icon-xl;
35
+ height: var(--font-size-icon-xl);
36
+ font-size: var(--font-size-icon-xl);
37
+ }
38
+
39
+ .icon-xxl {
40
+ height: var(--font-size-icon-xxl);
41
+ font-size: var(--font-size-icon-xxl);
22
42
  }
23
43
 
24
44
  .icon-functional {
@@ -1,4 +1,3 @@
1
-
2
1
  .list-listitems .listitem,
3
2
  .list-listitems .listitem-with-footer {
4
3
  @apply mb-xs;
@@ -11,7 +10,7 @@
11
10
  "badge metrics actions";
12
11
  grid-template-columns: auto 1fr auto;
13
12
 
14
- @screen sm {
13
+ @media (width >= theme(--breakpoint-sm)) {
15
14
  grid-template-areas: "badge title metrics actions";
16
15
  }
17
16
  }
@@ -1,4 +1,3 @@
1
-
2
1
  .list-inline {
3
2
  @apply flex flex-wrap;
4
3
  }
@@ -36,7 +35,7 @@ dl.list-inline.responsive {
36
35
  dd {
37
36
  @apply mb-xs;
38
37
  }
39
- @screen lg {
38
+ @media (width >= theme(--breakpoint-lg)) {
40
39
  grid-template-columns: auto 1fr;
41
40
  dd {
42
41
  margin-bottom: 0;
@@ -1,104 +1,86 @@
1
1
  .testio-loader-wrapper {
2
+ display: inline-block;
2
3
  overflow: hidden;
3
4
  position: relative;
5
+ }
4
6
 
5
- .stroke {
6
- stroke-linecap: round;
7
- stroke-miterlimit: 10;
8
- stroke-width: 180px;
9
- }
7
+ .testio-loader-wrapper .stroke {
8
+ stroke: var(--color-info);
9
+ stroke-linecap: round;
10
+ stroke-miterlimit: 10;
11
+ stroke-width: 6px;
12
+ }
10
13
 
11
- .anim-bar {
12
- animation: dash-line 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
13
- stroke: e6e6e6;
14
- }
14
+ .testio-loader-i {
15
+ height: 60px;
16
+ left: 0;
17
+ position: absolute;
18
+ top: 0;
19
+ width: 60px;
20
+ }
15
21
 
16
- .anim-circle {
17
- animation: dash-circle 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
18
- stroke-dasharray: 1, 200;
19
- stroke-dashoffset: 0;
20
- }
22
+ .anim-bar {
23
+ animation: dash-line 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
24
+ }
21
25
 
22
- @keyframes rotate {
23
- 100% {
24
- transform: rotate(360deg);
25
- }
26
+ @keyframes dash-line {
27
+ 0% {
28
+ stroke-dasharray: 1, 200;
29
+ stroke-dashoffset: -60px;
26
30
  }
27
31
 
28
- @keyframes dash-line {
29
- 0% {
30
- stroke-dasharray: 1, 200;
31
- stroke-dashoffset: -180px;
32
- }
33
-
34
- 50% {
35
- stroke-dasharray: 50, 200;
36
- }
37
-
38
- 100% {
39
- stroke-dasharray: 0, 200;
40
- stroke-dashoffset: 180px;
41
- }
32
+ 50% {
33
+ stroke-dasharray: 50, 200;
42
34
  }
43
35
 
44
- @keyframes dash-circle {
45
- 0% {
46
- stroke-dasharray: 1, 200;
47
- stroke-dashoffset: 0;
48
- }
49
-
50
- 50% {
51
- stroke-dasharray: 89, 200;
52
- stroke-dashoffset: -35px;
53
- }
54
-
55
- 100% {
56
- stroke-dasharray: 89, 200;
57
- stroke-dashoffset: -124px;
58
- }
36
+ 100% {
37
+ stroke-dasharray: 0, 200;
38
+ stroke-dashoffset: 60px;
59
39
  }
40
+ }
60
41
 
61
- @keyframes color {
62
- 100%,
63
- 0% {
64
- stroke: #e6e6e6;
65
- }
66
-
67
- 99% {
68
- stroke: #21bef4;
69
- }
70
- }
42
+ .testio-loader-o-wrapper {
43
+ position: relative;
44
+ height: 60px;
45
+ margin-left: 12px;
46
+ width: 60px;
71
47
  }
72
48
 
73
- .testio-loader-i {
74
- height: 180px;
75
- left: 0;
49
+ .testio-loader-o-wrapper .testio-loader-o {
76
50
  position: absolute;
77
- top: 0;
78
- width: 180px;
51
+ bottom: 0;
52
+ height: 60px;
53
+ left: 0;
54
+ right: 0;
55
+ top: 0;
56
+ transform-origin: center center;
79
57
  }
80
58
 
81
- .testio-loader-o-wrapper {
82
- height: 180px;
83
- margin-left: 20;
84
- position: relative;
85
- width: 180px;
86
-
87
- &::before {
59
+ .testio-loader-o-wrapper::before {
88
60
  content: "";
89
61
  display: block;
90
62
  padding-top: 100%;
63
+ }
64
+
65
+ .anim-circle {
66
+ animation: dash-circle 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
67
+ stroke-dasharray: 1, 200;
68
+ stroke-dashoffset: 0;
69
+ }
70
+
71
+ @keyframes dash-circle {
72
+ 0% {
73
+ stroke-dasharray: 1, 200;
74
+ stroke-dashoffset: 0;
91
75
  }
92
76
 
93
- .testio-loader-o {
94
- animation: rotate 2s linear infinite;
95
- bottom: 0;
96
- height: 180px;
97
- left: 0;
98
- position: absolute;
99
- right: 0;
100
- top: 0;
101
- transform-origin: center center;
77
+ 50% {
78
+ stroke-dasharray: 89, 200;
79
+ stroke-dashoffset: -35px;
102
80
  }
103
- }
104
81
 
82
+ 100% {
83
+ stroke-dasharray: 89, 200;
84
+ stroke-dashoffset: -124px;
85
+ }
86
+ }
@@ -1,4 +1,3 @@
1
-
2
1
  aside.metasidebar {
3
2
  @apply relative overflow-hidden;
4
3
  grid-area: aside;
@@ -39,7 +38,7 @@ aside .metasidebar-wrapper {
39
38
  }
40
39
 
41
40
  aside .metasidebar-wrapper[open] {
42
- @screen sm {
41
+ @media (width >= theme(--breakpoint-sm)) {
43
42
  @apply relative grid top-auto;
44
43
  }
45
44
  }
@@ -14,7 +14,7 @@
14
14
  }
15
15
 
16
16
  .drawer .notification-content {
17
- @apply relative grid py-xxs px-xs text-label cursor-pointer;
17
+ @apply relative grid py-xs px-spacing text-label cursor-pointer;
18
18
  grid-template-columns: auto 1fr;
19
19
  grid-template-rows: auto;
20
20
  }
@@ -23,7 +23,7 @@ select {
23
23
  }
24
24
 
25
25
  .form-select-native select {
26
- @apply relative flex flex-row w-full justify-start items-stretch min-h-btn py-xs px-sm text-base text-white rounded bg-primary outline-none border-0 cursor-pointer;
26
+ @apply relative flex flex-row w-full justify-start items-stretch min-h-btn py-xs px-sm text-base text-white rounded bg-primary outline-hidden border-0 cursor-pointer;
27
27
  }
28
28
 
29
29
  .form-select-native .select-wrapper select:disabled {
@@ -50,7 +50,7 @@ select.select2 {
50
50
  }
51
51
 
52
52
  .select2-search__field {
53
- @apply h-btn-sm pl-xs outline-none;
53
+ @apply h-btn-sm pl-xs outline-hidden;
54
54
  }
55
55
 
56
56
  .select2-results__options {