Skip to content

Commit

Permalink
Merge pull request #730 from rufener/bugfix
Browse files Browse the repository at this point in the history
Bugfix
  • Loading branch information
rufener authored Mar 29, 2023
2 parents f72ed6b + e293869 commit aa63011
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 27 deletions.
32 changes: 21 additions & 11 deletions front/src/components/Affaires/ControleGeometre/controleGeometre.css
Original file line number Diff line number Diff line change
@@ -1,43 +1,53 @@
.controleGeometre {
#controleGeometre .controleGeometre {
width: 100%;
float: left;
}

.controleGeometre .label {

#controleGeometre .controleGeometre .label {
display: block;
}

table, th, td {

#controleGeometre table, #controleGeometre th, #controleGeometre td {
border: 1px solid lightgray;
border-collapse: collapse;
}
th, td {

#controleGeometre th, #controleGeometre td {
padding: 5px;
}
th {

#controleGeometre th {
vertical-align: bottom;
}
th.ctrl_radiobtn {

#controleGeometre th.ctrl_radiobtn {
writing-mode: vertical-lr;
transform: rotate(180deg);
vertical-align: top;
}
td {

#controleGeometre td {
vertical-align: middle;
}
.ctrl_title {

#controleGeometre .ctrl_title {
font-style: italic;
background-color: lightgray;
}
.ctrl_label {

#controleGeometre .ctrl_label {
text-align: left;
width: 700px;
}
.ctrl_radiobtn {

#controleGeometre .ctrl_radiobtn {
text-align: center;
width: 32px;
}
.md-radio {

#controleGeometre .md-radio {
margin: 0px;
padding: 0px;
vertical-align: middle;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<div class="controleGeometre">
<div id="controleGeometre" class="controleGeometre">
<md-card>
<md-card-header class="justifyTitleBtn">
<div class="md-title">
Expand Down Expand Up @@ -352,11 +352,6 @@
<td class="ctrl_radiobtn"><md-radio v-model="controleGeometre.des_tampon_geom_date_initiale" :value="1"></md-radio></td>
<td class="ctrl_radiobtn"><md-radio v-model="controleGeometre.des_tampon_geom_date_initiale" :value="2"></md-radio></td>
</tr>
<tr>
<td class="ctrl_label">Tampon "Modifié le" et date du jour</td>
<td class="ctrl_radiobtn"><md-radio v-model="controleGeometre.des_tampon_modifie_date" :value="1"></md-radio></td>
<td class="ctrl_radiobtn"><md-radio v-model="controleGeometre.des_tampon_modifie_date" :value="2"></md-radio></td>
</tr>
<tr>
<td colspan="3" class="ctrl_title">Plan</td>
</tr>
Expand All @@ -365,11 +360,6 @@
<td class="ctrl_radiobtn"><md-radio v-model="controleGeometre.plan_tampon_geom_date_initiale" :value="1"></md-radio></td>
<td class="ctrl_radiobtn"><md-radio v-model="controleGeometre.plan_tampon_geom_date_initiale" :value="2"></md-radio></td>
</tr>
<tr>
<td class="ctrl_label">Tampon "Modifié le" et date du jour</td>
<td class="ctrl_radiobtn"><md-radio v-model="controleGeometre.plan_tampon_modifie_date" :value="1"></md-radio></td>
<td class="ctrl_radiobtn"><md-radio v-model="controleGeometre.plan_tampon_modifie_date" :value="2"></md-radio></td>
</tr>
</tbody>
</table>
</div>
Expand Down Expand Up @@ -440,7 +430,7 @@
<td class="ctrl_radiobtn"><md-radio v-model="controleGeometre.des_tampon_geom_date_initiale" :value="2"></md-radio></td>
</tr>
<tr>
<td class="ctrl_label">Tampon "Visé le" et date du jour</td>
<td class="ctrl_label">Tampon "Actualisé le" et date du jour</td>
<td class="ctrl_radiobtn"><md-radio v-model="controleGeometre.des_tampon_vise_date" :value="1"></md-radio></td>
<td class="ctrl_radiobtn"><md-radio v-model="controleGeometre.des_tampon_vise_date" :value="2"></md-radio></td>
</tr>
Expand All @@ -453,7 +443,7 @@
<td class="ctrl_radiobtn"><md-radio v-model="controleGeometre.plan_tampon_geom_date_initiale" :value="2"></md-radio></td>
</tr>
<tr>
<td class="ctrl_label">Tampon "Visé le" et date du jour</td>
<td class="ctrl_label">Tampon "Actualisé le" et date du jour</td>
<td class="ctrl_radiobtn"><md-radio v-model="controleGeometre.plan_tampon_vise_date" :value="1"></md-radio></td>
<td class="ctrl_radiobtn"><md-radio v-model="controleGeometre.plan_tampon_vise_date" :value="2"></md-radio></td>
</tr>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
height: 20px;
}

#emolumentsDialog .md-field .md-input, .md-field .md-textarea {
#emolumentsDialog .md-field .md-input, #emolumentsDialog .md-field .md-textarea {
height: 32px;
}

Expand Down Expand Up @@ -133,14 +133,14 @@
}

#emolumentsDialog .hideNulls {
font-size: 0px !important;
font-size: 0px;
}

#emolumentsDialog .customTable .customTableHead {
width: calc(100% - 1em);
}

#emolumentsDialog .customTable .customTableBody, .customTable .customTableHead {
#emolumentsDialog .customTable .customTableBody, #emolumentsDialog .customTable .customTableHead {
display: block;
}

Expand Down

0 comments on commit aa63011

Please sign in to comment.