@appscode/design-system 2.6.23 → 2.6.24
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/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
.mail-details {
|
|
2
2
|
display: grid;
|
|
3
|
-
grid-template-columns:
|
|
3
|
+
grid-template-columns: 360px calc(100% - 350px);
|
|
4
4
|
}
|
|
5
5
|
|
|
6
6
|
.inbox-sidebar {
|
|
7
|
-
width:
|
|
7
|
+
width: 360px;
|
|
8
8
|
border-right: 1px solid $color-border;
|
|
9
9
|
// padding: 20px;
|
|
10
10
|
// box-shadow: 2px 0px 6px 2px rgba(0, 0, 0, 0.04);
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
.single-message {
|
|
34
34
|
transition: 0.2s ease-in-out;
|
|
35
35
|
padding: 10px 20px;
|
|
36
|
-
border-radius: 4px;
|
|
36
|
+
// border-radius: 4px;
|
|
37
37
|
position: relative;
|
|
38
38
|
z-index: 9;
|
|
39
39
|
width: calc(100% + 40px);
|
|
@@ -60,9 +60,9 @@
|
|
|
60
60
|
|
|
61
61
|
.message-details {
|
|
62
62
|
max-width: 768px;
|
|
63
|
-
margin:
|
|
63
|
+
margin: 0;
|
|
64
64
|
@include until-widescreen {
|
|
65
|
-
margin:
|
|
65
|
+
margin: 0;
|
|
66
66
|
}
|
|
67
67
|
}
|
|
68
68
|
|
|
@@ -110,7 +110,7 @@ body:not(.message-details) .inbox-sidebar {
|
|
|
110
110
|
|
|
111
111
|
body:has(.message-details) {
|
|
112
112
|
.inbox-sidebar {
|
|
113
|
-
width:
|
|
113
|
+
width: 360px;
|
|
114
114
|
border-right: 1px solid #e2e8f0;
|
|
115
115
|
}
|
|
116
116
|
.ac-system-content {
|
|
@@ -124,9 +124,11 @@ body:has(.message-details) {
|
|
|
124
124
|
overflow: hidden;
|
|
125
125
|
transition: 0.2s ease-in-out;
|
|
126
126
|
&.is-open {
|
|
127
|
-
background-color: $primary-light-gray;
|
|
127
|
+
// background-color: $primary-light-gray;
|
|
128
128
|
padding: 16px;
|
|
129
129
|
border: 2px solid $ac-primary;
|
|
130
|
+
border-radius: 8px;
|
|
131
|
+
margin: 8px;
|
|
130
132
|
}
|
|
131
133
|
pre {
|
|
132
134
|
max-width: 100%;
|