Modifications mineures
This commit is contained in:
parent
b23bb26535
commit
8b26204bd2
File diff suppressed because one or more lines are too long
|
@ -174,10 +174,11 @@
|
|||
|
||||
span{
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
padding: .1em .5em;
|
||||
margin-right: .2em;
|
||||
margin-right: calc( .2em + 2em );
|
||||
|
||||
border-radius: 3px;
|
||||
border-radius: 3px 0 0 3px;
|
||||
border: 1px solid #bdbdbd;
|
||||
box-shadow: inset 0 0 2px #fafafa;
|
||||
|
||||
|
@ -186,6 +187,32 @@
|
|||
color: #333;
|
||||
|
||||
cursor: default;
|
||||
|
||||
|
||||
&:before{
|
||||
content: 'x';
|
||||
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: -1px;
|
||||
left: 100%;
|
||||
height: calc( 100% - .1em - 1px );
|
||||
padding: .1em .5em;
|
||||
|
||||
border-radius: 0 3px 3px 0;
|
||||
border: 1px solid #bdbdbd;
|
||||
box-shadow: inset 0 0 2px #fafafa;
|
||||
|
||||
background-color: #f9f9f9;
|
||||
|
||||
color: inherit;
|
||||
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
&:hover:before{
|
||||
color: $form-invalid-color;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
3
todo.md
3
todo.md
|
@ -7,6 +7,9 @@
|
|||
############
|
||||
# EN COURS #
|
||||
############
|
||||
- [ ] [view/users][container.scss] Gestion des groupes inline
|
||||
- [ ] [view/machines][container.scss] Gestion des groupes inline
|
||||
|
||||
- [ ] [view/clusters] Interface de gestion des groupes
|
||||
- [x] [src/static/menu-side][view] Ajout de l'icone des groupes
|
||||
- [x] [action-script] Ajout de la page a page-manager
|
||||
|
|
|
@ -119,6 +119,7 @@
|
|||
if( $clusters != false )
|
||||
foreach($clusters as $cluster)
|
||||
echo "<span>".$cluster['name']."</span>";
|
||||
echo "<span class='add-group' data-user='".$user['id_user']."'>+</span>";
|
||||
echo"</span>";
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue