@tekkare/auriga 0.1.25 → 0.1.26
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/module.json +1 -1
- package/dist/runtime/components/argBtn.vue +18 -6
- package/dist/runtime/components/argBtn.vue.d.ts +20 -0
- package/dist/runtime/components/argDropdownSelect.vue +6 -5
- package/dist/runtime/components/argDropdownSelect.vue.d.ts +1 -1
- package/dist/runtime/components/argNoSelectedScope.vue +165 -0
- package/dist/runtime/components/argNoSelectedScope.vue.d.ts +34 -0
- package/dist/runtime/components/argRadioButtons.vue +7 -3
- package/dist/runtime/components/argRadioButtons.vue.d.ts +3 -3
- package/dist/runtime/components/argStyle.vue +140 -146
- package/dist/runtime/components/argTags.vue +1 -1
- package/package.json +1 -1
package/dist/module.json
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div>
|
|
2
|
+
<div :class="fullWidth ? 'full_width' : ''">
|
|
3
3
|
<span
|
|
4
4
|
v-if="onlyIcon === false"
|
|
5
5
|
:class="
|
|
6
|
-
`oip_${btnStyle}_button oip_btn ` +
|
|
7
|
-
[becomeSmall === true ? 'prmt_button_big' : '']
|
|
6
|
+
`oip_${btnStyle}_button oip_btn oip_btn_${size} ` +
|
|
7
|
+
[becomeSmall === true ? 'prmt_button_big ' : ''] +
|
|
8
|
+
[fullWidth === true ? 'oip_full_btn' : '']
|
|
8
9
|
"
|
|
9
10
|
@click="send()"
|
|
10
11
|
>
|
|
@@ -53,7 +54,6 @@
|
|
|
53
54
|
|
|
54
55
|
<script>
|
|
55
56
|
import argIcon from "./argIcon.vue";
|
|
56
|
-
import argStyle from "./argStyle.vue";
|
|
57
57
|
import {
|
|
58
58
|
ref,
|
|
59
59
|
computed,
|
|
@@ -61,7 +61,7 @@ import {
|
|
|
61
61
|
} from "vue";
|
|
62
62
|
export default defineComponent({
|
|
63
63
|
name: "argBtn",
|
|
64
|
-
components: { argIcon
|
|
64
|
+
components: { argIcon },
|
|
65
65
|
props: {
|
|
66
66
|
btnStyle: { type: String, default: "primary" },
|
|
67
67
|
becomeSmall: { type: Boolean, default: true },
|
|
@@ -69,7 +69,15 @@ export default defineComponent({
|
|
|
69
69
|
onlyIcon: { type: Boolean, default: false },
|
|
70
70
|
prefixIcon: { type: String, default: null },
|
|
71
71
|
suffixIcon: { type: String, default: null },
|
|
72
|
-
loading: { type: Boolean, default: false }
|
|
72
|
+
loading: { type: Boolean, default: false },
|
|
73
|
+
fullWidth: { type: Boolean, default: false },
|
|
74
|
+
size: {
|
|
75
|
+
type: String,
|
|
76
|
+
default: "s",
|
|
77
|
+
validator: (value) => {
|
|
78
|
+
return ["s", "m"].includes(value);
|
|
79
|
+
}
|
|
80
|
+
}
|
|
73
81
|
},
|
|
74
82
|
emits: ["onClick"],
|
|
75
83
|
setup(props, { emit }) {
|
|
@@ -113,4 +121,8 @@ export default defineComponent({
|
|
|
113
121
|
display: none !important;
|
|
114
122
|
}
|
|
115
123
|
}
|
|
124
|
+
|
|
125
|
+
.full_width {
|
|
126
|
+
width: 100%;
|
|
127
|
+
}
|
|
116
128
|
</style>
|
|
@@ -27,6 +27,15 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
27
27
|
type: BooleanConstructor;
|
|
28
28
|
default: boolean;
|
|
29
29
|
};
|
|
30
|
+
fullWidth: {
|
|
31
|
+
type: BooleanConstructor;
|
|
32
|
+
default: boolean;
|
|
33
|
+
};
|
|
34
|
+
size: {
|
|
35
|
+
type: StringConstructor;
|
|
36
|
+
default: string;
|
|
37
|
+
validator: (value: string) => boolean;
|
|
38
|
+
};
|
|
30
39
|
}, {
|
|
31
40
|
getIconColor: import("vue").ComputedRef<string>;
|
|
32
41
|
send: () => void;
|
|
@@ -59,6 +68,15 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
59
68
|
type: BooleanConstructor;
|
|
60
69
|
default: boolean;
|
|
61
70
|
};
|
|
71
|
+
fullWidth: {
|
|
72
|
+
type: BooleanConstructor;
|
|
73
|
+
default: boolean;
|
|
74
|
+
};
|
|
75
|
+
size: {
|
|
76
|
+
type: StringConstructor;
|
|
77
|
+
default: string;
|
|
78
|
+
validator: (value: string) => boolean;
|
|
79
|
+
};
|
|
62
80
|
}>> & {
|
|
63
81
|
onOnClick?: ((...args: any[]) => any) | undefined;
|
|
64
82
|
}, {
|
|
@@ -69,5 +87,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
69
87
|
prefixIcon: string;
|
|
70
88
|
suffixIcon: string;
|
|
71
89
|
loading: boolean;
|
|
90
|
+
fullWidth: boolean;
|
|
91
|
+
size: string;
|
|
72
92
|
}, {}>;
|
|
73
93
|
export default _default;
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
</div>
|
|
68
68
|
<div v-else class="oip_select_dropdown_selection_container">
|
|
69
69
|
<div
|
|
70
|
-
v-for="(element, index) of filterName
|
|
70
|
+
v-for="(element, index) of filterName"
|
|
71
71
|
:key="index"
|
|
72
72
|
class="oip_select_complex_selection_loop"
|
|
73
73
|
:class="values_disabled.includes(index) ? 'disabled_option' : ''"
|
|
@@ -191,6 +191,7 @@ export default defineComponent({
|
|
|
191
191
|
watch(
|
|
192
192
|
() => props.element_table,
|
|
193
193
|
(new_element_table) => {
|
|
194
|
+
table_values.value = new_element_table;
|
|
194
195
|
if (props.watch_default_change) {
|
|
195
196
|
selected_item.value = new_element_table[props.default_select];
|
|
196
197
|
selected_number.value = props.default_select;
|
|
@@ -265,14 +266,14 @@ export default defineComponent({
|
|
|
265
266
|
isDisplay.value = false;
|
|
266
267
|
document?.removeEventListener("click", closeDropdown);
|
|
267
268
|
}
|
|
268
|
-
|
|
269
|
+
const filterName = computed(() => {
|
|
269
270
|
if (searchName.value !== null) {
|
|
270
|
-
return
|
|
271
|
+
return table_values.value.filter(
|
|
271
272
|
(element) => element.toLowerCase().includes(searchName.value.toLowerCase())
|
|
272
273
|
);
|
|
273
274
|
}
|
|
274
|
-
return
|
|
275
|
-
}
|
|
275
|
+
return table_values.value;
|
|
276
|
+
});
|
|
276
277
|
function changeDisplay() {
|
|
277
278
|
if (props.disabled === false) {
|
|
278
279
|
if (isDisplay.value === true) {
|
|
@@ -98,7 +98,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
98
98
|
checkActiveEllipsis: () => void;
|
|
99
99
|
add_element: (element: string, index: number) => void;
|
|
100
100
|
closeDropdown: () => void;
|
|
101
|
-
filterName: ()
|
|
101
|
+
filterName: import("vue").ComputedRef<string[]>;
|
|
102
102
|
changeDisplay: () => void;
|
|
103
103
|
changeInput: () => void;
|
|
104
104
|
getEmptyMsg: import("vue").ComputedRef<string>;
|
|
@@ -0,0 +1,165 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="arg_no_scope_display">
|
|
3
|
+
<div class="arg_no_selected_scope">
|
|
4
|
+
<div class="icon_square">
|
|
5
|
+
<arg-icon name="CrosshairSimple" size="32" />
|
|
6
|
+
</div>
|
|
7
|
+
<div class="arg_no_scope_text">
|
|
8
|
+
{{ getNoScopeMsg }}
|
|
9
|
+
</div>
|
|
10
|
+
<div v-if="scopeArray.length > 0" class="arg_scopes_select">
|
|
11
|
+
<div class="oip-row v-center justify-between">
|
|
12
|
+
<p class="args_select_title">
|
|
13
|
+
{{
|
|
14
|
+
lang === "fr"
|
|
15
|
+
? "Appliquer un scope existant"
|
|
16
|
+
: "Apply an existing scope"
|
|
17
|
+
}}
|
|
18
|
+
</p>
|
|
19
|
+
<!-- Manage Scopes -->
|
|
20
|
+
</div>
|
|
21
|
+
<arg-radio-buttons
|
|
22
|
+
dir="column"
|
|
23
|
+
:elements="scopeArray"
|
|
24
|
+
:return_value="true"
|
|
25
|
+
v-model:Selection="selectedScope"
|
|
26
|
+
/>
|
|
27
|
+
</div>
|
|
28
|
+
<arg-btn
|
|
29
|
+
v-if="scopeArray.length > 0"
|
|
30
|
+
:btn-style="selectedScope !== null ? 'primary-fill' : 'disable'"
|
|
31
|
+
size="m"
|
|
32
|
+
full-width
|
|
33
|
+
@onClick="selectScope"
|
|
34
|
+
>{{ lang === "fr" ? "Appliquer le scope" : "Apply scope" }}</arg-btn
|
|
35
|
+
>
|
|
36
|
+
<div class="oip_row v-center gap-8 full-width">
|
|
37
|
+
<div class="scope_sep" />
|
|
38
|
+
<p class="scope_sep_text">or</p>
|
|
39
|
+
<div class="scope_sep" />
|
|
40
|
+
</div>
|
|
41
|
+
<arg-btn
|
|
42
|
+
v-if="scopeArray.length > 0"
|
|
43
|
+
btn-style="primary-stroke"
|
|
44
|
+
size="m"
|
|
45
|
+
full-width
|
|
46
|
+
@onClick="createNewScope"
|
|
47
|
+
>{{ lang === "fr" ? "+ Nouveau scope" : "+ New scope" }}</arg-btn
|
|
48
|
+
>
|
|
49
|
+
</div>
|
|
50
|
+
</div>
|
|
51
|
+
</template>
|
|
52
|
+
|
|
53
|
+
<script>
|
|
54
|
+
import {
|
|
55
|
+
ref,
|
|
56
|
+
computed,
|
|
57
|
+
defineComponent
|
|
58
|
+
} from "vue";
|
|
59
|
+
import argIcon from "./argIcon.vue";
|
|
60
|
+
import argRadioButtons from "./argRadioButtons.vue";
|
|
61
|
+
export default defineComponent({
|
|
62
|
+
name: "argNoSelectedScope",
|
|
63
|
+
components: { argIcon, argRadioButtons },
|
|
64
|
+
props: {
|
|
65
|
+
lang: {
|
|
66
|
+
type: String,
|
|
67
|
+
default: "en",
|
|
68
|
+
validator: (value) => {
|
|
69
|
+
return ["en", "fr"].includes(value);
|
|
70
|
+
}
|
|
71
|
+
},
|
|
72
|
+
scopeArray: {
|
|
73
|
+
type: Array,
|
|
74
|
+
default: () => []
|
|
75
|
+
}
|
|
76
|
+
},
|
|
77
|
+
emits: ["onSelectScope", "update:Scope", "onCreateScope"],
|
|
78
|
+
setup(props, { emit }) {
|
|
79
|
+
const selectedScope = ref(null);
|
|
80
|
+
const getNoScopeMsg = computed(() => {
|
|
81
|
+
if (props.lang === "en") {
|
|
82
|
+
return `You need to select your scope to view any results or data. Please choose one of the options below to proceed.`;
|
|
83
|
+
} else
|
|
84
|
+
return `Vous devez s\xE9lectionner votre scope pour voir les r\xE9sultats ou donn\xE9es. Veuillez choisir une des options ci-dessous pour continuer`;
|
|
85
|
+
});
|
|
86
|
+
function selectScope() {
|
|
87
|
+
emit("onSelectScope", selectedScope.value);
|
|
88
|
+
emit("update:Scope", selectedScope.value);
|
|
89
|
+
}
|
|
90
|
+
function createNewScope() {
|
|
91
|
+
emit("onCreateScope");
|
|
92
|
+
}
|
|
93
|
+
return { getNoScopeMsg, selectedScope, selectScope, createNewScope };
|
|
94
|
+
}
|
|
95
|
+
});
|
|
96
|
+
</script>
|
|
97
|
+
|
|
98
|
+
<style scoped>
|
|
99
|
+
.arg_no_selected_scope {
|
|
100
|
+
display: flex;
|
|
101
|
+
flex-direction: column;
|
|
102
|
+
align-items: flex-start;
|
|
103
|
+
gap: 24px;
|
|
104
|
+
max-width: 382px;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.icon_square {
|
|
108
|
+
display: flex;
|
|
109
|
+
align-items: center;
|
|
110
|
+
justify-content: center;
|
|
111
|
+
background: var(--dividers);
|
|
112
|
+
padding: 8px;
|
|
113
|
+
border-radius: 8px;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.arg_no_scope_text {
|
|
117
|
+
font-size: 14px;
|
|
118
|
+
font-style: normal;
|
|
119
|
+
font-weight: 400;
|
|
120
|
+
line-height: 160%;
|
|
121
|
+
color: var(--cool-grey);
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.arg_no_scope_display {
|
|
125
|
+
height: 100%;
|
|
126
|
+
width: 100%;
|
|
127
|
+
margin-top: 80px;
|
|
128
|
+
display: flex;
|
|
129
|
+
align-items: center;
|
|
130
|
+
justify-content: center;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.arg_scopes_select {
|
|
134
|
+
display: flex;
|
|
135
|
+
flex-direction: column;
|
|
136
|
+
align-items: flex-start;
|
|
137
|
+
gap: 8px;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.args_select_title {
|
|
141
|
+
font-size: 16px;
|
|
142
|
+
font-style: normal;
|
|
143
|
+
font-weight: 700;
|
|
144
|
+
line-height: normal;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.scope_sep {
|
|
148
|
+
height: 1px;
|
|
149
|
+
background-color: var(--wild-blue-yonder);
|
|
150
|
+
flex: 1 1 0;
|
|
151
|
+
min-width: 40%;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.full-width {
|
|
155
|
+
width: 100%;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.scope_sep_text {
|
|
159
|
+
font-size: 14px;
|
|
160
|
+
font-style: normal;
|
|
161
|
+
font-weight: 400;
|
|
162
|
+
line-height: normal;
|
|
163
|
+
color: var(--wild-blue-yonder);
|
|
164
|
+
}
|
|
165
|
+
</style>
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
lang: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
validator: (value: string) => boolean;
|
|
6
|
+
};
|
|
7
|
+
scopeArray: {
|
|
8
|
+
type: ArrayConstructor;
|
|
9
|
+
default: () => never[];
|
|
10
|
+
};
|
|
11
|
+
}, {
|
|
12
|
+
getNoScopeMsg: import("vue").ComputedRef<"You need to select your scope to view any results or data. Please choose one of the options below to proceed." | "Vous devez sélectionner votre scope pour voir les résultats ou données. Veuillez choisir une des options ci-dessous pour continuer">;
|
|
13
|
+
selectedScope: any;
|
|
14
|
+
selectScope: () => void;
|
|
15
|
+
createNewScope: () => void;
|
|
16
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onSelectScope" | "update:Scope" | "onCreateScope")[], "onSelectScope" | "update:Scope" | "onCreateScope", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
17
|
+
lang: {
|
|
18
|
+
type: StringConstructor;
|
|
19
|
+
default: string;
|
|
20
|
+
validator: (value: string) => boolean;
|
|
21
|
+
};
|
|
22
|
+
scopeArray: {
|
|
23
|
+
type: ArrayConstructor;
|
|
24
|
+
default: () => never[];
|
|
25
|
+
};
|
|
26
|
+
}>> & {
|
|
27
|
+
onOnSelectScope?: ((...args: any[]) => any) | undefined;
|
|
28
|
+
"onUpdate:Scope"?: ((...args: any[]) => any) | undefined;
|
|
29
|
+
onOnCreateScope?: ((...args: any[]) => any) | undefined;
|
|
30
|
+
}, {
|
|
31
|
+
lang: string;
|
|
32
|
+
scopeArray: unknown[];
|
|
33
|
+
}, {}>;
|
|
34
|
+
export default _default;
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<div
|
|
4
4
|
v-for="(radio, index) in elements"
|
|
5
5
|
:key="index"
|
|
6
|
-
class="oip_row v-center gap-4"
|
|
6
|
+
class="oip_row v-center gap-4 radio_item"
|
|
7
7
|
:class="selectedRadio === index + 1 ? 'selected-radio' : 'display-radio'"
|
|
8
8
|
@click="selectRadio(index + 1, radio)"
|
|
9
9
|
>
|
|
@@ -37,7 +37,7 @@ export default defineComponent({
|
|
|
37
37
|
},
|
|
38
38
|
defaultSelect: {
|
|
39
39
|
type: Number,
|
|
40
|
-
default:
|
|
40
|
+
default: null
|
|
41
41
|
},
|
|
42
42
|
returnValue: {
|
|
43
43
|
type: Boolean,
|
|
@@ -50,7 +50,7 @@ export default defineComponent({
|
|
|
50
50
|
},
|
|
51
51
|
emits: ["changeElement", "update:Selection"],
|
|
52
52
|
setup(props, { emit }) {
|
|
53
|
-
const selectedRadio = ref(
|
|
53
|
+
const selectedRadio = ref(null);
|
|
54
54
|
onMounted(() => {
|
|
55
55
|
if (typeof props.defaultSelect === "number") {
|
|
56
56
|
selectedRadio.value = props.defaultSelect;
|
|
@@ -134,4 +134,8 @@ export default defineComponent({
|
|
|
134
134
|
align-items: flex-start;
|
|
135
135
|
gap: 8px;
|
|
136
136
|
}
|
|
137
|
+
|
|
138
|
+
.radio_item {
|
|
139
|
+
padding: 6px;
|
|
140
|
+
}
|
|
137
141
|
</style>
|
|
@@ -18,7 +18,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
18
18
|
};
|
|
19
19
|
defaultSelect: {
|
|
20
20
|
type: NumberConstructor;
|
|
21
|
-
default:
|
|
21
|
+
default: null;
|
|
22
22
|
};
|
|
23
23
|
returnValue: {
|
|
24
24
|
type: BooleanConstructor;
|
|
@@ -29,7 +29,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
29
29
|
default: string;
|
|
30
30
|
};
|
|
31
31
|
}, {
|
|
32
|
-
selectedRadio:
|
|
32
|
+
selectedRadio: any;
|
|
33
33
|
selectRadio: (index: number, value: string) => void;
|
|
34
34
|
getIconName: (index: number) => "CheckCircleFill" | "Circle";
|
|
35
35
|
getColor: (index: number) => "var(--primary)" | "var(--lavendar-grey)";
|
|
@@ -53,7 +53,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
53
53
|
};
|
|
54
54
|
defaultSelect: {
|
|
55
55
|
type: NumberConstructor;
|
|
56
|
-
default:
|
|
56
|
+
default: null;
|
|
57
57
|
};
|
|
58
58
|
returnValue: {
|
|
59
59
|
type: BooleanConstructor;
|
|
@@ -291,10 +291,9 @@ button {
|
|
|
291
291
|
|
|
292
292
|
.oip_btn {
|
|
293
293
|
border-radius: 8px !important;
|
|
294
|
-
padding:
|
|
294
|
+
padding: 0px 16px !important;
|
|
295
295
|
outline: none !important;
|
|
296
296
|
cursor: pointer !important;
|
|
297
|
-
max-height: 16px;
|
|
298
297
|
white-space: nowrap;
|
|
299
298
|
display: flex;
|
|
300
299
|
justify-content: center;
|
|
@@ -309,54 +308,66 @@ button {
|
|
|
309
308
|
width: fit-content;
|
|
310
309
|
}
|
|
311
310
|
|
|
312
|
-
.
|
|
311
|
+
.oip_btn_s {
|
|
312
|
+
height: 32px;
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
.oip_btn_m {
|
|
316
|
+
height: 40px;
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
.oip_full_btn {
|
|
320
|
+
width: calc(100% - 32px) !important;
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
.oip_primary-fill_button {
|
|
313
324
|
background: var(--primary) !important;
|
|
314
325
|
border: 2px solid var(--primary) !important;
|
|
315
326
|
box-shadow: var(--primary-button-shadow) !important;
|
|
316
327
|
color: var(--pure-white) !important;
|
|
317
328
|
}
|
|
318
|
-
.
|
|
329
|
+
.oip_primary-fill_button .oip_button_spinner div {
|
|
319
330
|
border: 2px solid var(--pure-white);
|
|
320
331
|
border-color: var(--pure-white) transparent transparent transparent;
|
|
321
332
|
}
|
|
322
333
|
|
|
323
|
-
.
|
|
324
|
-
.
|
|
334
|
+
.oip_primary-fill_button:hover,
|
|
335
|
+
.oip_primary-fill_button:focus {
|
|
325
336
|
background: var(--primary-hover2) !important;
|
|
326
337
|
border: 2px solid var(--primary-hover2) !important;
|
|
327
338
|
box-shadow: none !important;
|
|
328
339
|
color: var(--pure-white) !important;
|
|
329
340
|
}
|
|
330
|
-
.
|
|
331
|
-
.
|
|
332
|
-
.
|
|
333
|
-
background: var(--
|
|
334
|
-
border: 2px solid var(--
|
|
341
|
+
.oip_primary-fill_button.is-disabled,
|
|
342
|
+
.oip_primary-fill_button.is-disabled:hover,
|
|
343
|
+
.oip_primary-fill_button.is-disabled:focus {
|
|
344
|
+
background: var(--dividers) !important;
|
|
345
|
+
border: 2px solid var(--dividers) !important;
|
|
335
346
|
box-shadow: none !important;
|
|
336
|
-
color: var(--
|
|
347
|
+
color: var(--wild-blue-yonder) !important;
|
|
337
348
|
}
|
|
338
349
|
|
|
339
|
-
.
|
|
350
|
+
.oip_primary-fill_icon_button {
|
|
340
351
|
background: var(--primary) !important;
|
|
341
352
|
border: 2px solid var(--primary) !important;
|
|
342
353
|
box-shadow: var(--primary-button-shadow) !important;
|
|
343
354
|
color: var(--pure-white) !important;
|
|
344
|
-
padding:
|
|
355
|
+
padding: 0px 6px !important;
|
|
345
356
|
}
|
|
346
357
|
|
|
347
|
-
.
|
|
358
|
+
.oip_primary-fill_icon_button .oip_button_spinner div {
|
|
348
359
|
border: 2px solid var(--pure-white);
|
|
349
360
|
border-color: var(--pure-white) transparent transparent transparent;
|
|
350
361
|
}
|
|
351
|
-
.
|
|
352
|
-
.
|
|
362
|
+
.oip_primary-fill_icon_button:hover,
|
|
363
|
+
.oip_primary-fill_icon_button:focus {
|
|
353
364
|
background: var(--primary-hover) !important;
|
|
354
365
|
border: 2px solid var(--primary-hover) !important;
|
|
355
366
|
box-shadow: var(--primary-button-shadow) !important;
|
|
356
367
|
color: var(--pure-white) !important;
|
|
357
368
|
}
|
|
358
369
|
|
|
359
|
-
|
|
370
|
+
/*.oip_secondary_button,
|
|
360
371
|
.oip_secondary_button:hover,
|
|
361
372
|
.oip_secondary_button:focus {
|
|
362
373
|
background: var(--pure-white) !important;
|
|
@@ -379,269 +390,255 @@ button {
|
|
|
379
390
|
box-shadow: none !important;
|
|
380
391
|
color: var(--wild-blue-yonder) !important;
|
|
381
392
|
padding: 10px !important;
|
|
382
|
-
}
|
|
393
|
+
}*/
|
|
383
394
|
|
|
384
|
-
.
|
|
385
|
-
.oip_dark_button,
|
|
386
|
-
.oip_tertiary_button {
|
|
395
|
+
.oip_secondary-fill_button {
|
|
387
396
|
background: var(--independence) !important;
|
|
388
397
|
border: 2px solid var(--independence) !important;
|
|
389
398
|
box-shadow: 4px 7px 12px 0px rgba(62, 63, 94, 0.2) !important;
|
|
390
399
|
color: var(--pure-white) !important;
|
|
391
400
|
}
|
|
392
401
|
|
|
393
|
-
.
|
|
394
|
-
.
|
|
395
|
-
.
|
|
396
|
-
.
|
|
397
|
-
.oip_dark_button:hover,
|
|
398
|
-
.oip_dark_button:focus,
|
|
399
|
-
.oip_terciary_icon_button:hover,
|
|
400
|
-
.oip_terciary_icon_button:focus,
|
|
401
|
-
.oip_tertiary_icon_button:hover,
|
|
402
|
-
.oip_tertiary_icon_button:focus,
|
|
403
|
-
.oip_dark_icon_button:hover,
|
|
404
|
-
.oip_dark_icon_button:focus {
|
|
402
|
+
.oip_secondary-fill_button:hover,
|
|
403
|
+
.oip_secondary-fill_button:focus,
|
|
404
|
+
.oip_secondary-fill_icon_button:hover,
|
|
405
|
+
.oip_secondary-fill_icon_button:focus {
|
|
405
406
|
background: #21223d !important;
|
|
406
407
|
border: 2px solid #21223d !important;
|
|
407
408
|
box-shadow: none !important;
|
|
408
409
|
}
|
|
409
410
|
|
|
410
|
-
.
|
|
411
|
-
.
|
|
412
|
-
.oip_tertiary_icon_button .oip_button_spinner div,
|
|
413
|
-
.oip_dark_icon_button .oip_button_spinner div {
|
|
411
|
+
.oip_secondary-fill_button .oip_button_spinner div,
|
|
412
|
+
.oip_secondary-fill_icon_button .oip_button_spinner div {
|
|
414
413
|
border: 2px solid var(--pure-white);
|
|
415
414
|
border-color: var(--pure-white) transparent transparent transparent;
|
|
416
415
|
}
|
|
417
416
|
|
|
418
|
-
.
|
|
419
|
-
.oip_tertiary_icon_button,
|
|
420
|
-
.oip_dark_icon_button {
|
|
417
|
+
.oip_secondary-fill_icon_button {
|
|
421
418
|
background: var(--independence) !important;
|
|
422
419
|
border: 2px solid var(--independence) !important;
|
|
423
420
|
box-shadow: 4px 7px 12px 0px rgba(62, 63, 94, 0.2) !important;
|
|
424
421
|
color: var(--pure-white) !important;
|
|
425
|
-
padding:
|
|
422
|
+
padding: 0px 6px !important;
|
|
426
423
|
}
|
|
427
424
|
|
|
428
425
|
.oip_disable_button,
|
|
429
426
|
.oip_disable_button:hover,
|
|
430
427
|
.oip_disable_button:focus {
|
|
431
|
-
background: var(--
|
|
432
|
-
border: 2px solid var(--
|
|
428
|
+
background: var(--dividers) !important;
|
|
429
|
+
border: 2px solid var(--dividers) !important;
|
|
433
430
|
box-shadow: none !important;
|
|
434
|
-
color: var(--
|
|
431
|
+
color: var(--wild-blue-yonder) !important;
|
|
435
432
|
}
|
|
436
433
|
|
|
437
434
|
.oip_disable_icon_button,
|
|
438
435
|
.oip_disable_icon_button:hover,
|
|
439
436
|
.oip_disable_icon_button:focus {
|
|
440
|
-
background: var(--
|
|
441
|
-
border: 2px solid var(--
|
|
437
|
+
background: var(--dividers) !important;
|
|
438
|
+
border: 2px solid var(--dividers) !important;
|
|
442
439
|
box-shadow: none !important;
|
|
443
|
-
color: var(--
|
|
440
|
+
color: var(--wild-blue-yonder) !important;
|
|
444
441
|
}
|
|
445
442
|
|
|
446
443
|
.el-button + .el-button {
|
|
447
444
|
margin-left: 0px !important;
|
|
448
445
|
}
|
|
449
|
-
.
|
|
446
|
+
.oip_secondary-stroke_button {
|
|
450
447
|
background: transparent !important;
|
|
451
448
|
border: 2px solid rgba(62, 63, 94, 0.2) !important;
|
|
452
449
|
box-shadow: none !important;
|
|
453
450
|
color: var(--independence) !important;
|
|
454
451
|
}
|
|
455
452
|
|
|
456
|
-
.
|
|
457
|
-
.
|
|
453
|
+
.oip_secondary-stroke_button:hover,
|
|
454
|
+
.oip_secondary-stroke_button:focus {
|
|
458
455
|
background: rgba(62, 63, 94, 0.05) !important;
|
|
459
456
|
border: 2px solid rgba(62, 63, 94, 0.2) !important;
|
|
460
457
|
box-shadow: none !important;
|
|
461
458
|
color: var(--independence) !important;
|
|
462
459
|
}
|
|
463
460
|
|
|
464
|
-
.
|
|
465
|
-
.
|
|
466
|
-
.
|
|
467
|
-
.
|
|
461
|
+
.oip_secondary-stroke_button:hover .oip__button_prefix_icon,
|
|
462
|
+
.oip_secondary-stroke_button:focus .oip__button_prefix_icon,
|
|
463
|
+
.oip_secondary-stroke_button:hover .oip__button_suffix_icon,
|
|
464
|
+
.oip_secondary-stroke_button:focus .oip__button_suffix_icon {
|
|
468
465
|
stroke: var(--independence) !important;
|
|
469
466
|
color: var(--independence) !important;
|
|
470
467
|
}
|
|
471
|
-
.
|
|
472
|
-
.
|
|
468
|
+
.oip_secondary-stroke_button .oip_button_spinner div,
|
|
469
|
+
.oip_secondary-stroke_icon_button .oip_button_spinner div {
|
|
473
470
|
border: 2px solid var(--independence);
|
|
474
471
|
border-color: var(--independence) transparent transparent transparent;
|
|
475
472
|
}
|
|
476
|
-
.
|
|
473
|
+
.oip_secondary-stroke_icon_button {
|
|
477
474
|
background: transparent !important;
|
|
478
475
|
border: 2px solid rgba(62, 63, 94, 0.2) !important;
|
|
479
476
|
box-shadow: none !important;
|
|
480
477
|
color: var(--independence) !important;
|
|
481
|
-
padding:
|
|
478
|
+
padding: 0px 6px !important;
|
|
482
479
|
}
|
|
483
480
|
|
|
484
|
-
.
|
|
485
|
-
.
|
|
481
|
+
.oip_secondary-stroke_icon_button:hover,
|
|
482
|
+
.oip_secondary-stroke_icon_button:focus {
|
|
486
483
|
border: 2px solid rgba(33, 118, 255, 0.2) !important;
|
|
487
484
|
}
|
|
488
|
-
.
|
|
489
|
-
.
|
|
490
|
-
.
|
|
491
|
-
.
|
|
485
|
+
.oip_secondary-stroke_icon_button:hover svg,
|
|
486
|
+
.oip_secondary-stroke_icon_buttonn:focus svg,
|
|
487
|
+
.oip_secondary-stroke_icon_button:hover svg,
|
|
488
|
+
.oip_secondary-stroke_icon_button:focus svg {
|
|
492
489
|
stroke: var(--primary) !important;
|
|
493
490
|
color: var(--primary) !important;
|
|
494
491
|
}
|
|
495
492
|
|
|
496
|
-
.
|
|
493
|
+
.oip_primary-stroke_button {
|
|
497
494
|
background: transparent !important;
|
|
498
495
|
border: 2px solid rgba(33, 118, 255, 0.2) !important;
|
|
499
496
|
box-shadow: none !important;
|
|
500
497
|
color: var(--primary) !important;
|
|
501
498
|
}
|
|
502
499
|
|
|
503
|
-
.
|
|
504
|
-
.
|
|
505
|
-
.
|
|
506
|
-
.
|
|
500
|
+
.oip_primary-stroke_button:hover,
|
|
501
|
+
.oip_primary-stroke_button:focus,
|
|
502
|
+
.oip_primary-stroke_icon_button:hover,
|
|
503
|
+
.oip_primary-stroke_icon_button:focus {
|
|
507
504
|
background: rgba(33, 118, 255, 0.05) !important;
|
|
508
505
|
color: var(--primary-hover2) !important;
|
|
509
506
|
}
|
|
510
|
-
.
|
|
511
|
-
.
|
|
507
|
+
.oip_primary-stroke_button .oip_button_spinner div,
|
|
508
|
+
.oip_primary-stroke_icon_button .oip_button_spinner div {
|
|
512
509
|
border: 2px solid var(--primary);
|
|
513
510
|
border-color: var(--primary) transparent transparent transparent;
|
|
514
511
|
}
|
|
515
|
-
.
|
|
512
|
+
.oip_primary-stroke_icon_button {
|
|
516
513
|
background: transparent !important;
|
|
517
514
|
border: 2px solid rgba(33, 118, 255, 0.2) !important;
|
|
518
515
|
box-shadow: none !important;
|
|
519
|
-
padding:
|
|
516
|
+
padding: 0px 6px !important;
|
|
520
517
|
color: var(--primary) !important;
|
|
521
518
|
}
|
|
522
|
-
.
|
|
519
|
+
.oip_warning-stroke_button {
|
|
523
520
|
background: transparent !important;
|
|
524
521
|
border: 2px solid rgba(239, 68, 68, 0.2);
|
|
525
522
|
box-shadow: none !important;
|
|
526
523
|
color: var(--system-alert) !important;
|
|
527
524
|
}
|
|
528
|
-
.
|
|
529
|
-
.
|
|
530
|
-
.
|
|
531
|
-
.
|
|
525
|
+
.oip_warning-stroke_button:hover,
|
|
526
|
+
.oip_warning-stroke_button:focus,
|
|
527
|
+
.oip_warning-stroke_icon_button:hover,
|
|
528
|
+
.oip_warning-stroke_icon_button:focus {
|
|
532
529
|
background: rgba(239, 68, 68, 0.2) !important;
|
|
533
530
|
border: 2px solid rgba(251, 70, 84, 0.2) !important;
|
|
534
531
|
color: var(--alert-hover) !important;
|
|
535
532
|
}
|
|
536
|
-
.
|
|
537
|
-
.
|
|
533
|
+
.oip_warning-stroke_button .oip_button_spinner div,
|
|
534
|
+
.oip_warning-stroke_icon_button .oip_button_spinner div {
|
|
538
535
|
border: 2px solid var(--system-alert);
|
|
539
536
|
border-color: var(--system-alert) transparent transparent transparent;
|
|
540
537
|
}
|
|
541
|
-
.
|
|
542
|
-
.
|
|
538
|
+
.oip_warning-stroke_button:hover .oip_button_spinner div,
|
|
539
|
+
.oip_warning-stroke_icon_button:hover .oip_button_spinner div {
|
|
543
540
|
border: 2px solid var(--alert-hover);
|
|
544
541
|
border-color: var(--alert-hover) transparent transparent transparent;
|
|
545
542
|
}
|
|
546
|
-
.
|
|
547
|
-
.
|
|
548
|
-
.
|
|
549
|
-
.
|
|
543
|
+
.oip_warning-stroke_button:hover .oip__button_prefix_icon,
|
|
544
|
+
.oip_warning-stroke_button:focus .oip__button_prefix_icon,
|
|
545
|
+
.oip_warning-stroke_button:hover .oip__button_suffix_icon,
|
|
546
|
+
.oip_warning-stroke_button:focus .oip__button_suffix_icon {
|
|
550
547
|
stroke: var(--alert-hover) !important;
|
|
551
548
|
color: var(--alert-hover) !important;
|
|
552
549
|
}
|
|
553
|
-
.
|
|
550
|
+
.oip_warning-stroke_icon_button {
|
|
554
551
|
background: transparent !important;
|
|
555
552
|
border: 2px solid rgba(239, 68, 68, 0.2) !important;
|
|
556
553
|
box-shadow: none !important;
|
|
557
|
-
padding:
|
|
554
|
+
padding: 0px 6px !important;
|
|
558
555
|
color: var(--system-alert) !important;
|
|
559
556
|
}
|
|
560
|
-
.
|
|
561
|
-
.
|
|
557
|
+
.oip_warning-stroke_icon_button:hover,
|
|
558
|
+
.oip_warning-stroke_icon_button:hover {
|
|
562
559
|
border: 2px solid rgba(251, 70, 84, 0.2) !important;
|
|
563
560
|
color: var(--alert-hover) !important;
|
|
564
561
|
}
|
|
565
|
-
.
|
|
566
|
-
.
|
|
562
|
+
.oip_warning-stroke_icon_button:hover svg,
|
|
563
|
+
.oip_warning-stroke_icon_button:hover svg {
|
|
567
564
|
stroke: var(--alert-hover) !important;
|
|
568
565
|
color: var(--alert-hover) !important;
|
|
569
566
|
}
|
|
570
|
-
.
|
|
567
|
+
.oip_warning-fill_button {
|
|
571
568
|
background: var(--system-alert) !important;
|
|
572
569
|
border: 2px solid rgba(239, 68, 68, 0.2);
|
|
573
570
|
box-shadow: 4px 7px 12px 0px rgba(239, 68, 68, 0.2) !important;
|
|
574
571
|
color: var(--pure-white) !important;
|
|
575
572
|
}
|
|
576
|
-
.
|
|
577
|
-
.
|
|
578
|
-
.
|
|
579
|
-
.
|
|
573
|
+
.oip_warning-fill_button:hover,
|
|
574
|
+
.oip_warning-fill_button:focus,
|
|
575
|
+
.oip_warning-fill_icon_button:hover,
|
|
576
|
+
.oip_warning-fill_icon_button:focus {
|
|
580
577
|
background: var(--alert-hover) !important;
|
|
581
578
|
border: 2px solid var(--alert-hover) !important;
|
|
582
579
|
box-shadow: none !important;
|
|
583
580
|
}
|
|
584
|
-
.
|
|
585
|
-
.
|
|
581
|
+
.oip_warning-fill_button .oip_button_spinner div,
|
|
582
|
+
.oip_warning-fill_icon_button .oip_button_spinner div {
|
|
586
583
|
border: 2px solid var(--pure-white);
|
|
587
584
|
border-color: var(--pure-white) transparent transparent transparent;
|
|
588
585
|
}
|
|
589
|
-
.
|
|
586
|
+
.oip_warning-fill_icon_button {
|
|
590
587
|
background: var(--system-alert) !important;
|
|
591
588
|
border: 2px solid var(--system-alert) !important;
|
|
592
589
|
box-shadow: 4px 7px 12px 0px rgba(239, 68, 68, 0.2) !important;
|
|
593
|
-
padding:
|
|
590
|
+
padding: 0px 6px !important;
|
|
594
591
|
color: var(--pure-white) !important;
|
|
595
592
|
}
|
|
596
593
|
|
|
597
|
-
.
|
|
594
|
+
.oip_success-fill_button {
|
|
598
595
|
background: var(--green) !important;
|
|
599
596
|
border: 2px solid var(--green) !important;
|
|
600
597
|
box-shadow: 4px 7px 12px 0px rgba(34, 197, 94, 0.2) !important;
|
|
601
598
|
color: var(--pure-white) !important;
|
|
602
599
|
}
|
|
603
|
-
.
|
|
604
|
-
.
|
|
605
|
-
.
|
|
606
|
-
.
|
|
600
|
+
.oip_success-fill_button:hover,
|
|
601
|
+
.oip_success-fill_button:focus,
|
|
602
|
+
.oip_success-fill_icon_button:hover,
|
|
603
|
+
.oip_success-fill_icon_button:focus {
|
|
607
604
|
background: #2eb830 !important;
|
|
608
605
|
border: 2px solid #2eb830 !important;
|
|
609
606
|
box-shadow: none !important;
|
|
610
607
|
}
|
|
611
|
-
.
|
|
612
|
-
.
|
|
608
|
+
.oip_success-fill_button .oip_button_spinner div,
|
|
609
|
+
.oip_success-fill_icon_button .oip_button_spinner div {
|
|
613
610
|
border: 2px solid var(--pure-white);
|
|
614
611
|
border-color: var(--pure-white) transparent transparent transparent;
|
|
615
612
|
}
|
|
616
|
-
.
|
|
613
|
+
.oip_success-fill_icon_button {
|
|
617
614
|
background: var(--green) !important;
|
|
618
615
|
border: 2px solid var(--green) !important;
|
|
619
616
|
box-shadow: 4px 7px 12px 0px rgba(34, 197, 94, 0.2) !important;
|
|
620
|
-
padding:
|
|
617
|
+
padding: 0px 6px !important;
|
|
621
618
|
color: var(--pure-white) !important;
|
|
622
619
|
}
|
|
623
620
|
|
|
624
|
-
.
|
|
621
|
+
.oip_success-stroke_button {
|
|
625
622
|
background: transparent !important;
|
|
626
623
|
border: 2px solid rgba(34, 197, 94, 0.2) !important;
|
|
627
624
|
color: var(--system-success) !important;
|
|
628
625
|
}
|
|
629
|
-
.
|
|
630
|
-
.
|
|
631
|
-
.
|
|
632
|
-
.
|
|
626
|
+
.oip_success-stroke_button:hover,
|
|
627
|
+
.oip_success-stroke_button:focus,
|
|
628
|
+
.oip_success-stroke_icon_button:hover,
|
|
629
|
+
.oip_success-stroke_icon_button:focus {
|
|
633
630
|
border: 2px solid rgba(34, 197, 94, 0.2) !important;
|
|
634
631
|
background: rgba(34, 197, 94, 0.05) !important;
|
|
635
632
|
color: #069a3d !important;
|
|
636
633
|
}
|
|
637
|
-
.
|
|
638
|
-
.
|
|
634
|
+
.oip_success-stroke_button .oip_button_spinner div,
|
|
635
|
+
.oip_success-stroke_icon_button .oip_button_spinner div {
|
|
639
636
|
border: 2px solid var(--system-success);
|
|
640
637
|
border-color: var(--system-success) transparent transparent transparent;
|
|
641
638
|
}
|
|
642
|
-
.
|
|
639
|
+
.oip_success-stroke_icon_button {
|
|
643
640
|
border: 2px solid rgba(34, 197, 94, 0.2) !important;
|
|
644
|
-
padding:
|
|
641
|
+
padding: 0px 6px !important;
|
|
645
642
|
color: var(--system-success) !important;
|
|
646
643
|
}
|
|
647
644
|
.oip_button_flex {
|
|
@@ -728,62 +725,66 @@ button {
|
|
|
728
725
|
background: rgba(244, 63, 94, 0.1) !important;
|
|
729
726
|
color: #9f1239;
|
|
730
727
|
}
|
|
731
|
-
|
|
728
|
+
.oip_tag.is_pink {
|
|
732
729
|
background: rgba(236, 72, 153, 0.1) !important;
|
|
733
730
|
color: #9d174d;
|
|
734
|
-
}
|
|
731
|
+
}
|
|
735
732
|
.oip_tag.is_fushia {
|
|
736
733
|
background: rgba(217, 70, 239, 0.1) !important;
|
|
737
734
|
color: #86198f;
|
|
738
735
|
}
|
|
739
|
-
|
|
736
|
+
.oip_tag.is_purple {
|
|
740
737
|
background: rgba(168, 85, 247, 0.1) !important;
|
|
741
738
|
color: #6b21a8;
|
|
742
739
|
}
|
|
743
|
-
.oip_tag.
|
|
740
|
+
.oip_tag.is_violet {
|
|
744
741
|
background: rgba(139, 92, 246, 0.1) !important;
|
|
745
742
|
color: #5b21b6;
|
|
746
|
-
}
|
|
743
|
+
}
|
|
744
|
+
.oip_tag.is_indigo {
|
|
745
|
+
background: rgba(99, 102, 241, 0.1) !important;
|
|
746
|
+
color: #3730a3;
|
|
747
|
+
}
|
|
747
748
|
.oip_tag.is_blue {
|
|
748
749
|
background: rgba(59, 130, 246, 0.1) !important;
|
|
749
750
|
color: #1e40af;
|
|
750
751
|
}
|
|
751
|
-
|
|
752
|
+
.oip_tag.is_sky {
|
|
752
753
|
background: rgba(14, 165, 233, 0.1) !important;
|
|
753
754
|
color: #075985;
|
|
754
755
|
}
|
|
755
|
-
.oip_tag.
|
|
756
|
+
.oip_tag.is_cyan {
|
|
756
757
|
background: rgba(6, 182, 212, 0.1) !important;
|
|
757
758
|
color: #155e75;
|
|
758
759
|
}
|
|
759
760
|
.oip_tag.is_teal {
|
|
760
761
|
background: rgba(20, 184, 166, 0.1) !important;
|
|
761
762
|
color: #115e59;
|
|
762
|
-
}
|
|
763
|
+
}
|
|
763
764
|
.oip_tag.is_emerald {
|
|
764
765
|
background: rgba(16, 185, 129, 0.1) !important;
|
|
765
766
|
color: #065f46;
|
|
766
767
|
}
|
|
767
|
-
|
|
768
|
+
.oip_tag.is_green {
|
|
768
769
|
background: rgba(34, 197, 94, 0.1) !important;
|
|
769
770
|
color: #166534;
|
|
770
|
-
}
|
|
771
|
+
}
|
|
771
772
|
.oip_tag.is_lime {
|
|
772
773
|
background: rgba(132, 204, 22, 0.1) !important;
|
|
773
774
|
color: #3f6212;
|
|
774
775
|
}
|
|
775
|
-
|
|
776
|
+
.oip_tag.is_yellow {
|
|
776
777
|
background: rgba(234, 179, 8, 0.1) !important;
|
|
777
778
|
color: #854d0e;
|
|
778
|
-
}
|
|
779
|
+
}
|
|
779
780
|
.oip_tag.is_amber {
|
|
780
781
|
background: rgba(245, 158, 11, 0.1) !important;
|
|
781
782
|
color: #92400e;
|
|
782
783
|
}
|
|
783
|
-
|
|
784
|
+
.oip_tag.is_orange {
|
|
784
785
|
background: rgba(249, 115, 22, 0.1) !important;
|
|
785
786
|
color: #9a3412;
|
|
786
|
-
}
|
|
787
|
+
}
|
|
787
788
|
|
|
788
789
|
.oip_tag.is_gray {
|
|
789
790
|
background: var(--background) !important;
|
|
@@ -793,18 +794,6 @@ button {
|
|
|
793
794
|
stroke: var(--cool-grey);
|
|
794
795
|
color: var(--cool-grey);
|
|
795
796
|
}
|
|
796
|
-
.oip_tag.is_light_red {
|
|
797
|
-
background: rgba(251, 70, 84, 0.1) !important;
|
|
798
|
-
color: var(--alert) !important;
|
|
799
|
-
}
|
|
800
|
-
.oip_tag.is_light_green {
|
|
801
|
-
background: rgba(50, 209, 117, 0.1) !important;
|
|
802
|
-
color: var(--success) !important;
|
|
803
|
-
}
|
|
804
|
-
.oip_tag.is_light_primary {
|
|
805
|
-
background: #e9f1ff !important;
|
|
806
|
-
color: var(--primary) !important;
|
|
807
|
-
}
|
|
808
797
|
.oip_tag .oip_tag__close {
|
|
809
798
|
display: inline-block;
|
|
810
799
|
cursor: pointer;
|
|
@@ -1007,4 +996,9 @@ button {
|
|
|
1007
996
|
align-items: flex-start;
|
|
1008
997
|
gap: 4px;
|
|
1009
998
|
}
|
|
999
|
+
|
|
1000
|
+
.arg_page {
|
|
1001
|
+
height: 100%;
|
|
1002
|
+
width: 100%;
|
|
1003
|
+
}
|
|
1010
1004
|
</style>
|
|
@@ -18,7 +18,7 @@ export default defineComponent({
|
|
|
18
18
|
name: "argTags",
|
|
19
19
|
components: { argIcon, argStyle },
|
|
20
20
|
props: {
|
|
21
|
-
setStyle: { type: String, default: "
|
|
21
|
+
setStyle: { type: String, default: "gray" },
|
|
22
22
|
haveClose: { type: Boolean, default: false }
|
|
23
23
|
},
|
|
24
24
|
emits: ["onClose"],
|