2018-03-01 12:16:22 +00:00
|
|
|
@import 'constants';
|
|
|
|
|
|
|
|
#HEADER{
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
2018-03-16 14:25:05 +00:00
|
|
|
height: calc( #{$header-height-noratio} - 1px );
|
2018-03-01 12:16:22 +00:00
|
|
|
|
|
|
|
background-color: $header-bg;
|
|
|
|
border-bottom: 1px solid #e3e7eb;
|
|
|
|
|
|
|
|
// flex properties
|
2018-03-13 18:23:22 +00:00
|
|
|
flex-direction: row;
|
2018-03-15 16:38:06 +00:00
|
|
|
justify-content: flex-start;
|
2018-03-13 18:23:22 +00:00
|
|
|
align-items: center;
|
2018-03-01 12:16:22 +00:00
|
|
|
|
2018-03-16 14:25:05 +00:00
|
|
|
font-size: #{$header-font-size-ratio}em;
|
|
|
|
|
2018-03-01 12:16:22 +00:00
|
|
|
z-index: 150;
|
2018-03-12 18:50:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* (1) Version management */
|
2018-03-15 16:38:06 +00:00
|
|
|
& > div.departments,
|
2018-03-12 18:50:56 +00:00
|
|
|
& > div.versions{
|
|
|
|
|
|
|
|
/* (1.1) Version status */
|
|
|
|
& > div.current{
|
|
|
|
display: block;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
margin-left: 1em;
|
|
|
|
|
|
|
|
padding: .5em 1em;
|
|
|
|
|
|
|
|
padding-left: 2em;
|
|
|
|
|
|
|
|
border: 1px solid #ddd;
|
|
|
|
border-radius: 3px;
|
|
|
|
box-shadow: 0 2px 2px #fff;
|
|
|
|
|
|
|
|
transition: box-shadow .2s ease-in-out;
|
|
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
// hover animation
|
|
|
|
&:hover{ box-shadow: 0 2px 2px darken(#fff,10%); }
|
|
|
|
|
|
|
|
// color state
|
|
|
|
&:before{
|
|
|
|
content: '';
|
|
|
|
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
top: calc( 50% - .7em/2 );
|
|
|
|
left: calc( 1em/2 + .7em/2 );
|
|
|
|
width: .7em;
|
|
|
|
height: .7em;
|
|
|
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
|
|
|
background-color: $form-invalid-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/* (1.2) Version dialog (to switch to another) */
|
2018-03-15 16:38:06 +00:00
|
|
|
& > div.department-dialog,
|
2018-03-12 18:50:56 +00:00
|
|
|
& > div.version-dialog{
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
2018-03-15 16:38:06 +00:00
|
|
|
margin-top: 0;
|
|
|
|
margin-left: 0;
|
|
|
|
|
|
|
|
&.department-dialog{ margin-left: 1em; }
|
2018-03-12 18:50:56 +00:00
|
|
|
|
|
|
|
// padding: 1em .5em;
|
|
|
|
|
|
|
|
border: 1px solid #ddd;
|
2018-03-15 16:38:06 +00:00
|
|
|
border-top: 0;
|
|
|
|
border-radius: 0 0 3px 3px;
|
2018-03-12 18:50:56 +00:00
|
|
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
2018-03-15 16:38:06 +00:00
|
|
|
// box-shadow: 0 2px 2px #ddd;
|
2018-03-12 18:50:56 +00:00
|
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
|
|
|
|
/* (1.2.1) version items */
|
|
|
|
& > span{
|
|
|
|
display: block;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
padding: .5em 1em;
|
|
|
|
padding-left: 2em;
|
|
|
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
|
|
|
transition: background-color .2s ease-in-out;
|
|
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
// hover animation
|
|
|
|
&:hover{ background-color: darken(#fff, 5%); }
|
|
|
|
|
|
|
|
// color state
|
|
|
|
&:before{
|
|
|
|
content: '';
|
|
|
|
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
top: calc( 50% - .7em/2 );
|
|
|
|
left: calc( 1em/2 + .7em/2 );
|
|
|
|
width: .7em;
|
|
|
|
height: .7em;
|
|
|
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
2018-05-09 10:36:12 +00:00
|
|
|
background-color: $form-grey-color;
|
2018-03-12 18:50:56 +00:00
|
|
|
}
|
|
|
|
|
2018-03-15 16:38:06 +00:00
|
|
|
&[data-id='-1']:before{
|
2018-05-09 10:36:12 +00:00
|
|
|
border-radius: 0;
|
|
|
|
background: url('/asset/svg/plus.svg@#{$rd-form-valid-color}') center center no-repeat;
|
|
|
|
background-size: contain;
|
2018-03-12 18:50:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2018-03-15 16:38:06 +00:00
|
|
|
/* (2) Department | Version layout */
|
|
|
|
& > div.departments > div.current{
|
|
|
|
margin-right: 0;
|
|
|
|
padding-left: 1em;
|
|
|
|
border-radius: 3px 0 0 3px;
|
|
|
|
|
|
|
|
&:before{ content: none; }
|
|
|
|
}
|
|
|
|
|
|
|
|
& > div.versions > div.current{
|
|
|
|
margin-left: 0;
|
|
|
|
border-radius: 0 3px 3px 0;
|
|
|
|
border-left: 0;
|
|
|
|
}
|
|
|
|
|
2018-03-12 18:50:56 +00:00
|
|
|
|
|
|
|
|
2018-03-01 12:16:22 +00:00
|
|
|
}
|