@dodona/papyros 4.2.1 → 4.2.2
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.
|
Binary file
|
|
@@ -25,14 +25,14 @@ let AddFileButton = class AddFileButton extends PapyrosElement {
|
|
|
25
25
|
|
|
26
26
|
.add-btn {
|
|
27
27
|
padding: 0.375rem 0.5rem;
|
|
28
|
-
border:
|
|
28
|
+
border: 1px solid var(--md-sys-color-outline-variant);
|
|
29
29
|
border-bottom: 2px solid var(--md-sys-color-outline-variant);
|
|
30
30
|
border-radius: 0.375rem 0.375rem 0 0;
|
|
31
31
|
cursor: pointer;
|
|
32
32
|
font-size: 1rem;
|
|
33
33
|
line-height: 1;
|
|
34
|
-
background-color: var(--md-sys-color-surface
|
|
35
|
-
color: var(--md-sys-color-on-surface
|
|
34
|
+
background-color: var(--md-sys-color-surface);
|
|
35
|
+
color: var(--md-sys-color-on-surface);
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
.add-btn:hover {
|
|
@@ -2,13 +2,13 @@ import { css } from "lit";
|
|
|
2
2
|
export const tabButtonStyles = css `
|
|
3
3
|
button {
|
|
4
4
|
padding: 0.375rem 0.75rem;
|
|
5
|
-
border:
|
|
5
|
+
border: 1px solid var(--md-sys-color-outline-variant);
|
|
6
6
|
border-bottom: 2px solid var(--md-sys-color-outline-variant);
|
|
7
7
|
border-radius: 0.375rem 0.375rem 0 0;
|
|
8
8
|
cursor: pointer;
|
|
9
9
|
font-size: 0.875rem;
|
|
10
|
-
background-color: var(--md-sys-color-surface
|
|
11
|
-
color: var(--md-sys-color-on-surface
|
|
10
|
+
background-color: var(--md-sys-color-surface);
|
|
11
|
+
color: var(--md-sys-color-on-surface);
|
|
12
12
|
white-space: nowrap;
|
|
13
13
|
display: flex;
|
|
14
14
|
align-items: center;
|
|
@@ -16,8 +16,8 @@ export const tabButtonStyles = css `
|
|
|
16
16
|
}
|
|
17
17
|
|
|
18
18
|
button.active {
|
|
19
|
-
background-color: var(--md-sys-color-surface);
|
|
20
|
-
color: var(--md-sys-color-on-surface);
|
|
19
|
+
background-color: var(--md-sys-color-surface-variant);
|
|
20
|
+
color: var(--md-sys-color-on-surface-variant);
|
|
21
21
|
font-weight: 600;
|
|
22
22
|
border-bottom: 2px solid var(--md-sys-color-primary);
|
|
23
23
|
}
|