Subversion Repositories eFlore/Applications.cel

Rev

Rev 3164 | Rev 3167 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3164 Rev 3166
Line 84... Line 84...
84
#group-settings-form #langue{
84
#group-settings-form #langue{
85
    width: 100%;
85
    width: 100%;
86
    border: 0.1rem solid #ddd;
86
    border: 0.1rem solid #ddd;
87
    border-radius: 0.3rem;
87
    border-radius: 0.3rem;
88
    padding: 1rem;
88
    padding: 1rem;
89
    overflow: visible;
89
    overflow: hidden;
90
}
90
}
Line 91... Line 91...
91
 
91
 
92
 
92
 
Line 106... Line 106...
106
 
106
 
107
    border:none;
107
    border:none;
108
    margin: 1rem;
108
    margin: 1rem;
109
    height: 300rem;
109
    height: 300rem;
110
    min-height: 100%;
110
    min-height: 100%;
111
    width: 100%;
111
    width: 90%;
112
    pointer-events: none;
112
    pointer-events: none;
113
    overflow: hidden
113
    overflow: hidden
Line 114... Line 114...
114
}
114
}
Line 129... Line 129...
129
 
129
 
130
 
130
 
131
/* styles de base si JS est activé */
131
/* styles de base si JS est activé */
132
.js #group-settings-form .input-file-container {
132
.js #group-settings-form .input-file-container {
133
  position: relative;
133
  position: relative;
134
  width: 225px;
134
  width: 100%;
135
}
135
}
136
.js #group-settings-form .label-file {
136
.js #group-settings-form .label-file {
137
  display: block;
137
  display: block;
138
  padding: 14px 45px;
138
  padding: 1rem;
139
  background: #009FB8;
139
  background: #009FB8;
140
  color: #fff !important;
140
  color: #fff !important;
141
  font-size: 1em;
141
  font-size: 1.5rem;
142
  transition: all .4s;
142
  transition: all .4s;
143
  cursor: pointer;
143
  cursor: pointer;
144
  border-radius: 0.2em;
144
  border-radius: 0.2rem;
145
}
145
}
146
.js #group-settings-form .input-file {
146
.js #group-settings-form .input-file {
147
  position: absolute;
147
  position: absolute;
148
  top: 0; left: 0;
148
  top: 0; left: 0;
-
 
149
  width: 80%;
149
  width: 225px;
150
  padding: 1rem;
150
  padding: 14px 0;
151
  margin: auto;
151
  opacity: 0;
152
  opacity: 0;
Line 152... Line 153...
152
  cursor: pointer;
153
  cursor: pointer;
Line 160... Line 161...
160
  background: #3071A9;
161
  background: #3071A9;
161
  color: #fff;
162
  color: #fff;
162
}
163
}
Line 163... Line 164...
163
 
164
 
164
/* styles du retour visuel */
165
/* styles du retour visuel */
-
 
166
#group-settings-form .file-return:not(:empty)::before{
165
#group-settings-form .file-return {
167
  content:'Nom du fichier: ';
166
  margin: 0;
168
  font-size: 1rem;
-
 
169
}
167
}
170
 
168
#group-settings-form .file-return:not(:empty) {
171
#group-settings-form .file-return:not(:empty) img{
-
 
172
  margin: 1rem auto;
169
  margin: 1em 0;
173
  display: block;
-
 
174
}
170
}
175
 
171
.js #group-settings-form .file-return {
176
.js #group-settings-form .file-return {
172
  font-style: italic;
177
  font-style: italic;
173
  font-size: .9em;
178
  font-size: 1.5rem;
174
  font-weight: bold;
179
  font-weight: bold;
175
}
180
}
176
/* on complète l'information d'un contenu textuel
181
/* on complète l'information d'un contenu textuel
177
   uniquement lorsque le paragraphe n'est pas vide */
182
   uniquement lorsque le paragraphe n'est pas vide */
178
.js #group-settings-form .file-return:not(:empty):before {
183
/*.js #group-settings-form .file-return:not(:empty):before {
179
  content: "Selected file: ";
184
  content: "Fichier sélectionné: ";
180
  font-style: normal;
185
  font-style: normal;
181
  font-weight: normal;
186
  font-weight: normal;
-
 
187
}