|
26 | 26 | <v-layout row wrap>
|
27 | 27 | <!-- Column A -->
|
28 | 28 | <v-flex xs12 md6 offset-md3>
|
29 |
| - <p style="text-align: left"> |
30 |
| - <v-alert |
31 |
| - :value="true" |
32 |
| - type="info" |
33 |
| - style="font-size:16px"> |
34 |
| - Qui puoi creare o modificare una attività, definendo come dovrà apparire allo studente che dovrà utilizzarla per scrivere programmi. Ricorda che l'attività andrà poi <b> avviata </b> (Menù Attività -> Apri) per poterne fare effettivamente uso. |
35 |
| - </v-alert> |
36 |
| - |
37 |
| - </p> |
| 29 | + <p style="text-align: left"> |
| 30 | + <v-alert :value="true" type="info" style="font-size:16px"> |
| 31 | + Qui puoi creare o modificare una attività, definendo come dovrà apparire allo studente che dovrà utilizzarla per scrivere programmi. Ricorda che l'attività andrà poi <b> avviata </b> (Menù Attività -> Apri) per poterne fare effettivamente uso. |
| 32 | + </v-alert> |
| 33 | + </p> |
38 | 34 | <h3 class="text-xs-left">Dati Attività </h3>
|
39 | 35 | <v-card>
|
40 | 36 | <v-form class="cardContent">
|
|
181 | 177 | <div v-for="button, i in activity.buttons">
|
182 | 178 | <h3>Pulsante {{i + 1}}
|
183 | 179 | <v-btn @click="removeButton(i)" flat icon v-if="!button.notErasable">
|
184 |
| - <v-icon>clear</v-icon> |
185 |
| - </v-btn></h3> |
| 180 | + <v-icon>clear</v-icon> |
| 181 | + </v-btn> |
| 182 | + </h3> |
186 | 183 | <v-card>
|
187 | 184 | <div class="cardContent">
|
188 | 185 | <span class="grey--text text--darken-2" v-if="button.notErasable"> "Esegui" non può essere eliminato </span>
|
189 | 186 | <v-text-field v-model="button.label" label="Etichetta"></v-text-field>
|
190 | 187 | <v-select v-model="button.action" :items="actions" label="Azione" :disabled="button.notErasable">
|
191 | 188 | </v-select>
|
192 |
| - <v-select :items="textColors" v-model="button.colorText" label="Colore testo"></v-select> |
193 |
| - Colore Pulsante <swatches v-model="button.colorBtn"></swatches> |
| 189 | + <v-layout row wrap> |
| 190 | + <v-flex xs6> |
| 191 | + <v-select :items="textColors" v-model="button.colorText" label="Colore testo"></v-select> |
| 192 | + </v-flex> |
| 193 | + <v-flex xs6> |
| 194 | + Colore Pulsante <div style="display:inline-block"> |
| 195 | + <swatches popover-to="left" v-model="button.colorBtn"></swatches> |
| 196 | + </div> |
| 197 | + </v-flex> |
| 198 | + </v-layout> |
194 | 199 | <v-text-field v-model="button.icon" label="Icona"></v-text-field>
|
195 | 200 | <v-divider></v-divider>
|
196 | 201 | <v-btn :color="button.colorBtn" :class="button.colorText">
|
|
226 | 231 | </v-layout>
|
227 | 232 | </v-container>
|
228 | 233 | </v-tab-item>
|
| 234 | + <v-tab-item> |
| 235 | + <wsFactory /> |
229 | 236 | </v-tab-item>
|
230 | 237 | </v-tabs-items>
|
231 | 238 | </v-content>
|
|
0 commit comments