@aquera/nile-elements 0.0.7-1 → 0.0.8
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/.rollup.cache/opt/atlassian/pipelines/agent/build/packages/nile-elements/dist/src/nile-dialog/nile-dialog.css.js +16 -9
- package/.rollup.cache/opt/atlassian/pipelines/agent/build/packages/nile-elements/dist/src/nile-dialog/nile-dialog.css.js.map +1 -1
- package/.rollup.cache/opt/atlassian/pipelines/agent/build/packages/nile-elements/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/index.iife.js +24 -17
- package/dist/nile-dialog/nile-dialog.css.cjs.js +1 -1
- package/dist/nile-dialog/nile-dialog.css.cjs.js.map +1 -1
- package/dist/nile-dialog/nile-dialog.css.esm.js +16 -9
- package/dist/src/nile-dialog/nile-dialog.css.js +16 -9
- package/dist/src/nile-dialog/nile-dialog.css.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/nile-dialog/nile-dialog.css.ts +16 -9
package/package.json
CHANGED
@@ -72,18 +72,24 @@ export const styles = css`
|
|
72
72
|
.dialog__header {
|
73
73
|
flex: 0 0 auto;
|
74
74
|
display: flex;
|
75
|
-
padding:
|
76
|
-
background-color: #
|
75
|
+
padding: 12px 24px;
|
76
|
+
background-color: #fafafa;
|
77
77
|
border-radius: 4px 4px 0 0;
|
78
|
-
border: 1px solid #
|
78
|
+
border: 1px solid #e5e9eb;
|
79
79
|
}
|
80
80
|
|
81
81
|
.dialog__title {
|
82
|
+
display: flex;
|
82
83
|
flex: 1 1 auto;
|
83
|
-
|
84
|
-
font-size: 1.25rem;
|
85
|
-
line-height: 1.4;
|
84
|
+
align-items: center;
|
86
85
|
margin: 0;
|
86
|
+
color: #000;
|
87
|
+
font-family: Colfax-regular;
|
88
|
+
font-size: 16px;
|
89
|
+
font-style: normal;
|
90
|
+
font-weight: 400;
|
91
|
+
line-height: 16px;
|
92
|
+
letter-spacing: 0.2px;
|
87
93
|
}
|
88
94
|
|
89
95
|
.dialog__header-actions {
|
@@ -108,16 +114,17 @@ export const styles = css`
|
|
108
114
|
padding: 1.25rem;
|
109
115
|
overflow: auto;
|
110
116
|
-webkit-overflow-scrolling: touch;
|
111
|
-
border: 1px solid #
|
117
|
+
border: 1px solid #e5e9eb;
|
118
|
+
border-radius: 4px 4px 0px 0px;
|
112
119
|
}
|
113
120
|
|
114
121
|
.dialog__footer {
|
115
122
|
flex: 0 0 auto;
|
116
123
|
text-align: right;
|
117
124
|
padding: 12px 24px;
|
118
|
-
background-color: #
|
125
|
+
background-color: #fafafa;
|
119
126
|
border-radius: 0 0 4px 4px;
|
120
|
-
border: 1px solid #
|
127
|
+
border: 1px solid #e5e9eb;
|
121
128
|
}
|
122
129
|
|
123
130
|
.dialog__footer ::slotted(nile-button:not(:first-of-type)) {
|