[Fix #1016] display notifications for champs publics

This commit is contained in:
Mathieu Magnin 2017-12-05 16:07:05 +01:00
parent dfbd52c7a0
commit c6be745067
12 changed files with 81 additions and 13 deletions

View file

@ -12,3 +12,4 @@ $lighter-green: lighten($green, 30%);
$light-green: lighten($green, 25%);
$dark-green: darken($green, 20%);
$orange: #F59415;
$orange-bg: lighten($orange, 35%);

View file

@ -1,6 +1,7 @@
@import "colors";
@import "constants";
.dossier-champs {
.table.dossier-champs {
th,
td {
vertical-align: top;
@ -9,4 +10,23 @@
.libelle {
width: 250px;
}
td.updated-at {
font-size: 13px;
color: $grey;
text-align: right;
width: 190px;
> span {
opacity: 0;
&.highlighted {
opacity: 1;
}
}
}
tr:hover .updated-at > span {
opacity: 1;
}
}

View file

@ -1,3 +1,5 @@
@import "colors";
.pull-left {
float: left;
}
@ -32,3 +34,8 @@
text-align: center;
margin: 60px 0;
}
.highlighted {
background: $orange-bg;
color: $black;
}