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-04-25 17:14:55 +08:00
|
|
|
// scss-lint:disable SelectorDepth
|
|
|
|
// scss-lint:disable NestingDepth
|
|
|
|
// scss-lint:disable SelectorFormat
|
|
|
|
// scss-lint:disable ImportantRule
|
2020-09-25 21:06:09 +08:00
|
|
|
// scss-lint:disable Unknown
|
2019-04-25 17:14:55 +08:00
|
|
|
|
2019-03-25 20:53:28 +08:00
|
|
|
@import "constants";
|
2019-04-26 21:20:39 +08:00
|
|
|
@import "mixins";
|
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 {
|
2022-11-29 22:41:57 +08:00
|
|
|
border: 0;
|
2019-03-25 20:53:28 +08:00
|
|
|
margin-left: 0;
|
2020-10-02 21:02:42 +08:00
|
|
|
|
|
|
|
.panel-body {
|
2022-11-29 22:41:57 +08:00
|
|
|
padding: 15px 24px;
|
2020-10-02 21:02:42 +08:00
|
|
|
}
|
2019-03-25 20:53:28 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-04 20:43:30 +08:00
|
|
|
.step-panel-collapse-link {
|
|
|
|
padding-left: 5px;
|
|
|
|
|
2023-06-20 21:53:33 +08:00
|
|
|
&:not(.collapsed) .sn-icon {
|
2020-09-04 20:43:30 +08:00
|
|
|
@include rotate(90deg);
|
2023-06-20 21:53:33 +08:00
|
|
|
display: inline-block;
|
2020-09-04 20:43:30 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-15 17:04:17 +08:00
|
|
|
.step-heading {
|
|
|
|
align-items: center;
|
2019-12-04 18:27:22 +08:00
|
|
|
border: 0;
|
2020-05-13 16:58:40 +08:00
|
|
|
display: flex;
|
|
|
|
min-height: 46px;
|
2020-10-02 21:02:42 +08:00
|
|
|
padding: 0 17px;
|
2019-03-25 20:53:28 +08:00
|
|
|
|
|
|
|
.panel-options {
|
|
|
|
bottom: 0;
|
2020-05-13 16:58:40 +08:00
|
|
|
flex-grow: 1;
|
|
|
|
flex-shrink: 0;
|
2019-12-04 18:27:22 +08:00
|
|
|
line-height: 46px;
|
2020-05-13 16:58:40 +08:00
|
|
|
text-align: right;
|
2019-03-25 20:53:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
span.step-number {
|
2020-11-23 17:18:27 +08:00
|
|
|
flex-shrink: 0;
|
2020-07-13 20:51:51 +08:00
|
|
|
font-size: 16px;
|
2019-05-11 22:04:28 +08:00
|
|
|
font-weight: bold;
|
2020-07-13 20:51:51 +08:00
|
|
|
margin: 0 5px 0 10px;
|
2019-05-29 19:56:55 +08:00
|
|
|
min-width: fit-content;
|
2019-03-25 20:53:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.left-floats {
|
2019-05-08 23:18:19 +08:00
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
2020-05-13 16:58:40 +08:00
|
|
|
max-width: 100%;
|
|
|
|
min-height: inherit;
|
|
|
|
overflow: hidden;
|
2020-10-31 01:47:01 +08:00
|
|
|
padding-left: .1em;
|
2019-05-29 19:56:55 +08:00
|
|
|
padding-right: 15px;
|
2019-03-25 20:53:28 +08:00
|
|
|
|
2020-10-02 21:02:42 +08:00
|
|
|
.toggle-step-complete {
|
|
|
|
@include font-h1;
|
|
|
|
padding: 5px;
|
|
|
|
|
|
|
|
.fas {
|
|
|
|
color: $brand-success;
|
|
|
|
}
|
|
|
|
|
|
|
|
.far {
|
|
|
|
color: $color-alto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-08 23:18:19 +08:00
|
|
|
.step-name-link {
|
|
|
|
display: flex;
|
|
|
|
flex-shrink: 1;
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
.name-block {
|
2019-05-20 17:20:08 +08:00
|
|
|
display: flex;
|
|
|
|
flex-shrink: 1;
|
2019-12-04 18:27:22 +08:00
|
|
|
height: 100%;
|
2019-05-08 23:18:19 +08:00
|
|
|
overflow: hidden;
|
|
|
|
|
2019-06-10 17:23:40 +08:00
|
|
|
@media (max-width: 1188px) {
|
|
|
|
min-width: 100px;
|
|
|
|
}
|
|
|
|
|
2019-05-08 23:18:19 +08:00
|
|
|
strong {
|
2019-05-14 15:43:02 +08:00
|
|
|
font-size: 16px;
|
2019-05-08 23:18:19 +08:00
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.delimiter {
|
|
|
|
padding: 0 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.author-block {
|
2019-05-14 15:43:02 +08:00
|
|
|
display: inline-block;
|
2019-05-20 17:20:08 +08:00
|
|
|
flex-shrink: 0;
|
2019-05-14 15:43:02 +08:00
|
|
|
font-size: 16px;
|
2019-05-08 23:18:19 +08:00
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2019-03-25 20:53:28 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-05-30 19:58:16 +08:00
|
|
|
}
|
2019-03-25 20:53:28 +08:00
|
|
|
|
2019-04-20 16:59:59 +08:00
|
|
|
.step .textarea-sm {
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.comments-title {
|
|
|
|
color: $color-emperor;
|
|
|
|
}
|
2020-04-24 17:50:03 +08:00
|
|
|
|
|
|
|
.expand-all-steps {
|
|
|
|
margin: 0 0 15px 15px;
|
|
|
|
}
|