@saooti/octopus-sdk 32.0.10 → 32.0.11
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 +4 -1
- package/package.json +1 -1
- package/src/assets/form.scss +2 -1
- package/src/assets/modal.scss +0 -6
- package/src/assets/multiselect.scss +1 -4
package/README.md
CHANGED
|
@@ -640,6 +640,8 @@ See [Configuration Reference](https://cli.vuejs.org/config/).
|
|
|
640
640
|
* 31.0.47 Pétouilles Css multiselect
|
|
641
641
|
* 31.0.48 Icones change
|
|
642
642
|
* 31.0.49 Style select
|
|
643
|
+
* 31.0.50 Améliorations responsive
|
|
644
|
+
|
|
643
645
|
|
|
644
646
|
* 32.0.0 Passage en 32
|
|
645
647
|
* 32.0.1 Navigation clavier
|
|
@@ -651,4 +653,5 @@ See [Configuration Reference](https://cli.vuejs.org/config/).
|
|
|
651
653
|
* 32.0.7 Améliorations
|
|
652
654
|
* 32.0.8 Navigation clavier podcastmaker
|
|
653
655
|
* 32.0.9 Update icones
|
|
654
|
-
* 32.0.10 Ajout alt
|
|
656
|
+
* 32.0.10 Ajout alt
|
|
657
|
+
* 32.0.11 Merge 31
|
package/package.json
CHANGED
package/src/assets/form.scss
CHANGED
|
@@ -9,10 +9,11 @@
|
|
|
9
9
|
select {
|
|
10
10
|
background: white !important;
|
|
11
11
|
outline-color: transparent !important;
|
|
12
|
-
padding:
|
|
12
|
+
padding: 0.25rem 0.4rem;
|
|
13
13
|
border: 0.1rem solid #dee2e6;
|
|
14
14
|
border-radius: 0.3rem;
|
|
15
15
|
height: 2rem;
|
|
16
|
+
padding-right: 40px;
|
|
16
17
|
}
|
|
17
18
|
.form-check-label {
|
|
18
19
|
cursor: pointer;
|
package/src/assets/modal.scss
CHANGED
|
@@ -24,9 +24,6 @@
|
|
|
24
24
|
border-radius: 0.8rem 0.8rem 0 0;
|
|
25
25
|
background: $octopus-primary-dark;
|
|
26
26
|
color: white;
|
|
27
|
-
@media (max-width: 450px) {
|
|
28
|
-
padding: 1rem 0;
|
|
29
|
-
}
|
|
30
27
|
}
|
|
31
28
|
.modal-body{
|
|
32
29
|
overflow-x: auto;
|
|
@@ -34,9 +31,6 @@
|
|
|
34
31
|
min-height: 200px;
|
|
35
32
|
height: 200px;
|
|
36
33
|
}
|
|
37
|
-
@media (max-width: 500px){
|
|
38
|
-
padding: 0;
|
|
39
|
-
}
|
|
40
34
|
}
|
|
41
35
|
.modal-dialog, .modal-content {
|
|
42
36
|
min-height: 300px;
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
cursor: pointer;
|
|
62
62
|
position: absolute;
|
|
63
63
|
right: 10px;
|
|
64
|
-
top:
|
|
64
|
+
top: 0.4rem;
|
|
65
65
|
margin: 0;
|
|
66
66
|
background-color: #ccc;
|
|
67
67
|
border-radius: 50%;
|
|
@@ -71,9 +71,6 @@
|
|
|
71
71
|
&:before{
|
|
72
72
|
font-size: 0.8rem;
|
|
73
73
|
}
|
|
74
|
-
@media (max-width: 450px) {
|
|
75
|
-
top: 14px;
|
|
76
|
-
}
|
|
77
74
|
}
|
|
78
75
|
|
|
79
76
|
|