@oxide/design-system 2.7.0 → 2.7.1--canary.e2e4f77.0
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.
- package/dist/asciidoc.css +25 -29
- package/dist/button.css +1 -1
- package/dist/components/src/index.js +11 -11
- package/dist/components/src/index.js.map +1 -1
- package/dist/tabs.css +1 -1
- package/package.json +3 -1
- package/styles/dist/blue.css +162 -643
- package/styles/dist/green.css +162 -641
- package/styles/dist/main.css +634 -855
- package/styles/dist/purple.css +162 -643
- package/styles/dist/red.css +162 -643
- package/styles/dist/tailwind.css +51 -0
- package/styles/dist/yellow.css +162 -641
- package/styles/dist/tailwind-tokens.ts +0 -2988
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
3
|
+
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
4
|
+
* file, you can obtain one at https://mozilla.org/MPL/2.0/.
|
|
5
|
+
*
|
|
6
|
+
* Copyright Oxide Computer Company
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
/*
|
|
10
|
+
Set the default cursor for buttons.
|
|
11
|
+
*/
|
|
12
|
+
|
|
13
|
+
button,
|
|
14
|
+
[role='button'] {
|
|
15
|
+
cursor: pointer;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
/*
|
|
19
|
+
Make sure disabled buttons don't get the pointer cursor.
|
|
20
|
+
*/
|
|
21
|
+
:disabled {
|
|
22
|
+
cursor: default;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
@theme {
|
|
26
|
+
--color-*: initial; /* disable default colors */
|
|
27
|
+
|
|
28
|
+
--breakpoint-300: 300px;
|
|
29
|
+
--breakpoint-400: 400px;
|
|
30
|
+
--breakpoint-500: 500px;
|
|
31
|
+
--breakpoint-600: 600px;
|
|
32
|
+
--breakpoint-700: 700px;
|
|
33
|
+
--breakpoint-800: 800px;
|
|
34
|
+
--breakpoint-900: 900px;
|
|
35
|
+
--breakpoint-1000: 1000px;
|
|
36
|
+
--breakpoint-1200: 1200px;
|
|
37
|
+
--breakpoint-1400: 1400px;
|
|
38
|
+
--breakpoint-1600: 1600px;
|
|
39
|
+
|
|
40
|
+
--container-300: 300px;
|
|
41
|
+
--container-400: 400px;
|
|
42
|
+
--container-500: 500px;
|
|
43
|
+
--container-600: 600px;
|
|
44
|
+
--container-700: 700px;
|
|
45
|
+
--container-800: 800px;
|
|
46
|
+
--container-900: 900px;
|
|
47
|
+
--container-1000: 1000px;
|
|
48
|
+
--container-1200: 1200px;
|
|
49
|
+
--container-1400: 1400px;
|
|
50
|
+
--container-1600: 1600px;
|
|
51
|
+
}
|