2016-02-12 23:52:43 +08:00
|
|
|
// Place all the styles related to the Steps controller here.
|
|
|
|
// They will automatically be included in application.css.
|
|
|
|
// You can use Sass (SCSS) here: http://sass-lang.com/
|
2019-03-25 20:53:28 +08:00
|
|
|
@import "constants";
|
2016-02-12 23:52:43 +08:00
|
|
|
|
|
|
|
#new_step,
|
|
|
|
.panel-step-attachment {
|
|
|
|
ul {
|
|
|
|
list-style: none;
|
|
|
|
|
|
|
|
li {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
|
|
|
& > div > span.pull-left {
|
2018-05-22 22:55:58 +08:00
|
|
|
margin-top: 10px;
|
2016-02-12 23:52:43 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-05-30 19:58:16 +08:00
|
|
|
|
|
|
|
#steps {
|
|
|
|
// hack only for firefox
|
|
|
|
@-moz-document url-prefix() {
|
|
|
|
ul > li {
|
|
|
|
padding-top: 1px;
|
|
|
|
|
|
|
|
a > p:first-child {
|
|
|
|
margin-top: -17px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-03-25 20:53:28 +08:00
|
|
|
|
|
|
|
.step {
|
|
|
|
.panel {
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.complete-step-btn {
|
|
|
|
display: inline-block;
|
|
|
|
line-height: 39px;
|
|
|
|
|
|
|
|
button {
|
|
|
|
display: block;
|
|
|
|
font-size: 12px;
|
|
|
|
margin: auto 0;
|
|
|
|
padding: 3px 10px;
|
|
|
|
|
|
|
|
span {
|
|
|
|
font-size: 15px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.panel-heading {
|
|
|
|
background-color: $color-silver;
|
|
|
|
border-bottom-width: 0 !important;
|
2019-04-09 18:28:42 +08:00
|
|
|
height: 39px;
|
|
|
|
padding-bottom: 0;
|
|
|
|
padding-top: 0;
|
2019-03-25 20:53:28 +08:00
|
|
|
|
|
|
|
> * {
|
|
|
|
display: inline-block;
|
|
|
|
line-height: 39px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.panel-options {
|
|
|
|
bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
span.step-number {
|
|
|
|
font-size: 30px;
|
|
|
|
margin: 0 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.left-floats {
|
|
|
|
float: left;
|
|
|
|
|
|
|
|
> * {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-05-30 19:58:16 +08:00
|
|
|
}
|
2019-03-25 20:53:28 +08:00
|
|
|
|
2019-04-09 18:28:42 +08:00
|
|
|
.attacments {
|
2019-04-09 16:00:56 +08:00
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
2019-04-23 19:35:10 +08:00
|
|
|
justify-content: space-evenly;
|
2019-04-09 16:00:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.attachment-placeholder {
|
|
|
|
background-color: $color-white;
|
2019-04-09 18:28:42 +08:00
|
|
|
border-radius: 5px;
|
2019-04-09 16:00:56 +08:00
|
|
|
color: $color-silver-chalice;
|
2019-04-09 18:28:42 +08:00
|
|
|
height: 277px;
|
|
|
|
margin: 3px;
|
|
|
|
width: 216px;
|
2019-04-09 16:00:56 +08:00
|
|
|
|
|
|
|
a {
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
|
2019-04-09 18:28:42 +08:00
|
|
|
&.new {
|
|
|
|
background-color: rgba(95, 95, 95, 0.1);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
2019-04-09 16:00:56 +08:00
|
|
|
box-shadow: 0 1px 5px 0 rgba(0,0,0,0.18);
|
|
|
|
}
|
|
|
|
|
|
|
|
.attachment-thumbnail {
|
|
|
|
box-shadow: 0 1px 2px 0 rgba(0,0,0,0.15);
|
2019-04-09 18:28:42 +08:00
|
|
|
height: 160px;
|
2019-04-09 16:00:56 +08:00
|
|
|
margin: 16px auto 5px auto;
|
|
|
|
overflow: hidden;
|
2019-04-09 18:28:42 +08:00
|
|
|
text-align: center;
|
|
|
|
width: 113px;
|
2019-04-09 16:00:56 +08:00
|
|
|
|
|
|
|
img {
|
|
|
|
max-height: 100%;
|
|
|
|
}
|
|
|
|
|
2019-04-09 18:28:42 +08:00
|
|
|
i.fas {
|
2019-04-09 16:00:56 +08:00
|
|
|
font-size: 100px;
|
|
|
|
line-height: 160px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.no-shadow {
|
|
|
|
box-shadow: 0 0 0 0 rgba(0,0,0,0.15);
|
|
|
|
}
|
|
|
|
|
|
|
|
.attachment-label {
|
|
|
|
color: #40A1D7;
|
|
|
|
font-family: Lato;
|
|
|
|
font-size: 16px;
|
2019-04-09 18:28:42 +08:00
|
|
|
height: 39px;
|
2019-04-09 16:00:56 +08:00
|
|
|
line-height: 18px;
|
|
|
|
margin: 0 auto;
|
|
|
|
overflow: hidden;
|
2019-04-09 18:28:42 +08:00
|
|
|
text-align: center;
|
|
|
|
width: 190px;
|
2019-04-09 16:00:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.spencer-bonnet-modif {
|
|
|
|
color: $color-silver-chalice;
|
|
|
|
font-family: Lato;
|
|
|
|
font-size: 12px;
|
2019-04-09 18:28:42 +08:00
|
|
|
height: 45px;
|
2019-04-09 16:00:56 +08:00
|
|
|
line-height: 15px;
|
|
|
|
margin: 0 auto;
|
2019-04-09 18:28:42 +08:00
|
|
|
text-align: center;
|
|
|
|
width: 149px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.remove-icon {
|
|
|
|
bottom: 10px;
|
|
|
|
position: relative;
|
|
|
|
right: 10px;
|
2019-04-09 16:00:56 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-09 18:28:42 +08:00
|
|
|
.attachments-order {
|
2019-04-09 16:00:56 +08:00
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
2019-04-09 18:28:42 +08:00
|
|
|
.attachments-actions {
|
2019-04-09 16:00:56 +08:00
|
|
|
color: $color-silver-chalice;
|
|
|
|
|
2019-04-09 18:28:42 +08:00
|
|
|
.drag_n_drop_label {
|
2019-04-09 16:00:56 +08:00
|
|
|
font-size: 14px;
|
|
|
|
line-height: 32px;
|
|
|
|
}
|
|
|
|
|
2019-04-09 18:28:42 +08:00
|
|
|
.btn-default {
|
2019-04-09 16:00:56 +08:00
|
|
|
border: 0;
|
|
|
|
color: inherit;
|
2019-04-09 18:28:42 +08:00
|
|
|
margin-left: 10px;
|
2019-04-09 16:00:56 +08:00
|
|
|
|
2019-04-09 18:28:42 +08:00
|
|
|
&:hover {
|
2019-04-09 16:00:56 +08:00
|
|
|
background: inherit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-03-25 20:53:28 +08:00
|
|
|
|