@saooti/octopus-sdk 31.0.29 → 31.0.32
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/README.md
CHANGED
|
@@ -616,3 +616,6 @@ See [Configuration Reference](https://cli.vuejs.org/config/).
|
|
|
616
616
|
* 31.0.27 Snackbar chose holdtime
|
|
617
617
|
* 31.0.28 Mixins orgComputed
|
|
618
618
|
* 31.0.29 Changement css
|
|
619
|
+
* 31.0.30 Changement css
|
|
620
|
+
* 31.0.31 Changement css (trop de fun)
|
|
621
|
+
* 31.0.32 Changement css (toujours trop de fun)
|
package/package.json
CHANGED
|
@@ -9,11 +9,12 @@
|
|
|
9
9
|
}
|
|
10
10
|
.btn{
|
|
11
11
|
font-size:.7rem;
|
|
12
|
-
border-radius:
|
|
12
|
+
border-radius: 4px;
|
|
13
13
|
background: $octopus-secondary-color;
|
|
14
14
|
transition: background .2s, border .2s, box-shadow .2s, color .2s;
|
|
15
15
|
text-decoration: none !important;
|
|
16
16
|
white-space: nowrap;
|
|
17
|
+
border-width: 1px;
|
|
17
18
|
@media (max-width: 960px) {
|
|
18
19
|
white-space: normal;
|
|
19
20
|
}
|
|
@@ -49,20 +50,20 @@
|
|
|
49
50
|
background: $octopus-primary-dark;
|
|
50
51
|
border: 1px solid $octopus-primary-dark;
|
|
51
52
|
border-radius: 4px !important;
|
|
52
|
-
color: white;
|
|
53
|
+
color: white !important;
|
|
53
54
|
font-weight: bold;
|
|
54
55
|
&:focus,
|
|
55
56
|
&:hover,
|
|
56
57
|
&:active,
|
|
57
58
|
&.active {
|
|
58
59
|
background: transparent;
|
|
59
|
-
color: $octopus-primary-dark;
|
|
60
|
+
color: $octopus-primary-dark !important;
|
|
60
61
|
}
|
|
61
62
|
&:disabled{
|
|
62
63
|
background-color: #cccccc;
|
|
63
64
|
border: black;
|
|
64
65
|
cursor: default;
|
|
65
|
-
color: gray;
|
|
66
|
+
color: gray !important;
|
|
66
67
|
}
|
|
67
68
|
@media (max-width: 500px){
|
|
68
69
|
margin: 0.3rem;
|
|
@@ -103,6 +104,8 @@
|
|
|
103
104
|
justify-content: center;
|
|
104
105
|
color : $octopus-primary-dark;
|
|
105
106
|
flex-shrink: 0;
|
|
107
|
+
font-weight: normal;
|
|
108
|
+
border-radius: 50% !important;
|
|
106
109
|
}
|
|
107
110
|
|
|
108
111
|
}
|
package/src/assets/share.scss
CHANGED
|
@@ -10,8 +10,14 @@
|
|
|
10
10
|
class="input-no-outline"
|
|
11
11
|
@change="$emit('update:iFrameModel',$event.target.value)"
|
|
12
12
|
>
|
|
13
|
-
<template
|
|
14
|
-
|
|
13
|
+
<template
|
|
14
|
+
v-for="option in optionsSelect"
|
|
15
|
+
:key="option.value"
|
|
16
|
+
>
|
|
17
|
+
<option
|
|
18
|
+
v-if="option.condition"
|
|
19
|
+
:value="option.value"
|
|
20
|
+
>
|
|
15
21
|
{{ option.name }}
|
|
16
22
|
</option>
|
|
17
23
|
</template>
|