A Better interface

This commit is contained in:
Evarin 2017-04-20 01:53:29 +02:00
parent a2109cbb9d
commit df038f0226
10 changed files with 349 additions and 267 deletions

View file

@ -189,6 +189,12 @@ article.stage {
text-shadow: -3px 3px 0 rgba(#000, 0.1);
//margin-right: 25px;
}
#stage-map {
height: 300px;
width: 100%;
}
section {
background: #eee;
padding: 14px;
@ -302,6 +308,24 @@ article.stage {
}
}
.edit-box {
background: #eee;
margin: 10px;
padding: 10px 20px;
text-align: center;
&.public {
background: lighten($vert, 40%);
border: 1px solid $vert * 0.7;
}
&.prive {
background: lighten($rouge, 40%);
border: 1px solid $rouge * 0.7;
}
}
.article-wrapper {
display: table;
.toc-wrapper, article {
@ -355,6 +379,21 @@ input[type='text'], input[type='password'], textarea, select {
}
}
input[type="submit"] {
background-color: $fond;
color: #fff;
border: 1px solid $fond * 0.7;
border-radius: 5px;
padding: 8px 12px;
display: block;
margin-left: auto;
margin-right: 0;
}
p input[type="submit"] {
display:inline-block;
}
select {
-moz-appearance: none;
@ -522,6 +561,17 @@ div.as-results {
overflow: auto;
}
.window-closer {
position: absolute;
top: 0;
right: 0;
padding: 12px;
z-index: 3;
&:after {
content: "×";
}
}
}
.lieu-ui {
@ -537,3 +587,21 @@ div.as-results {
#avis_lieu_vide {
display:none;
}
a.lieu-change {
color:#fff;
background: $compl;
overflow: hidden;
display: inline-block;
max-width: 250px;
text-overflow: ellipsis;
white-space: nowrap;
padding: 5px;
border-radius: 5px;
margin-right: 7px;
&.ajout:before {
content: "+";
margin-right: 5px;
}
}