@aquera/nile-elements 0.0.7 → 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 -7
- 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 -15
- 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 -7
- package/dist/src/nile-dialog/nile-dialog.css.js +16 -7
- 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 -7
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
|
-
|
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,14 +114,17 @@ export const styles = css`
|
|
108
114
|
padding: 1.25rem;
|
109
115
|
overflow: auto;
|
110
116
|
-webkit-overflow-scrolling: touch;
|
117
|
+
border: 1px solid #e5e9eb;
|
118
|
+
border-radius: 4px 4px 0px 0px;
|
111
119
|
}
|
112
120
|
|
113
121
|
.dialog__footer {
|
114
122
|
flex: 0 0 auto;
|
115
123
|
text-align: right;
|
116
124
|
padding: 12px 24px;
|
117
|
-
background-color: #
|
125
|
+
background-color: #fafafa;
|
118
126
|
border-radius: 0 0 4px 4px;
|
127
|
+
border: 1px solid #e5e9eb;
|
119
128
|
}
|
120
129
|
|
121
130
|
.dialog__footer ::slotted(nile-button:not(:first-of-type)) {
|