@saooti/octopus-sdk 36.0.21 → 36.0.22
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/package.json +1 -1
- package/src/assets/bootstrap.scss +9 -9
- package/src/components/display/categories/CategoryFilter.vue +1 -0
- package/src/components/display/participant/ParticipantItem.vue +1 -0
- package/src/components/display/rubriques/RubriqueList.vue +1 -1
- package/src/components/misc/HomeDropdown.vue +0 -1
package/package.json
CHANGED
|
@@ -3,13 +3,13 @@
|
|
|
3
3
|
-webkit-box-sizing: border-box;
|
|
4
4
|
box-sizing: border-box;
|
|
5
5
|
}
|
|
6
|
+
input:not([class^="vs__"]), button:not([class^="vs__"]), select:not([class^="vs__"]), optgroup, textarea {
|
|
7
|
+
margin: 0;
|
|
8
|
+
font-family: inherit;
|
|
9
|
+
font-size: inherit;
|
|
10
|
+
line-height: inherit;
|
|
11
|
+
}
|
|
6
12
|
.octopus-app{
|
|
7
|
-
input:not([class^="vs__"]), button:not([class^="vs__"]), select:not([class^="vs__"]), optgroup, textarea {
|
|
8
|
-
margin: 0;
|
|
9
|
-
font-family: inherit;
|
|
10
|
-
font-size: inherit;
|
|
11
|
-
line-height: inherit;
|
|
12
|
-
}
|
|
13
13
|
button {
|
|
14
14
|
cursor: pointer;
|
|
15
15
|
}
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
}
|
|
23
23
|
margin-top: 0;
|
|
24
24
|
margin-bottom:0;
|
|
25
|
-
font-weight:
|
|
25
|
+
font-weight: 600;
|
|
26
26
|
line-height: 1.2;
|
|
27
27
|
}
|
|
28
28
|
h1,.h1{
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
}
|
|
70
70
|
.btn{
|
|
71
71
|
display: inline-block;
|
|
72
|
-
padding: 0.
|
|
72
|
+
padding: 0.5rem;
|
|
73
73
|
line-height: 1.5;
|
|
74
74
|
color: #212529;
|
|
75
75
|
text-align: center;
|
|
@@ -99,7 +99,7 @@
|
|
|
99
99
|
&.btn-underline{
|
|
100
100
|
background: none;
|
|
101
101
|
padding: 0;
|
|
102
|
-
margin: 0 2rem 1rem 0;
|
|
102
|
+
margin: 0.5rem 2rem 1rem 0;
|
|
103
103
|
border-radius: 0;
|
|
104
104
|
font-size: 0.9rem;
|
|
105
105
|
@media (max-width: 600px) {
|
|
@@ -117,7 +117,6 @@ export default defineComponent({
|
|
|
117
117
|
},
|
|
118
118
|
routerBackoffice(){
|
|
119
119
|
return [
|
|
120
|
-
{title:this.$t('My space'),class:"show-phone octopus-dropdown-item", path:'/main/priv/backoffice', condition: true},
|
|
121
120
|
{title:this.$t('Edit my profile'),class:"octopus-dropdown-item", path:'/main/priv/edit/profile', condition: true},
|
|
122
121
|
{title:this.$t('Edit my organisation'),class:"octopus-dropdown-item", path:'/main/priv/edit/organisation', condition: (state.generalParameters.isOrganisation as boolean) || 1<this.organisationsAvailable.length}];
|
|
123
122
|
},
|