62 lines
1.9 KiB
SCSS
62 lines
1.9 KiB
SCSS
@charset "utf-8";
|
|
|
|
@import "../initial";
|
|
|
|
#ticket-status-form{
|
|
background-color: #fdfdfd;
|
|
padding: 2em;
|
|
border-radius: 10px;
|
|
border: 1px solid #E4E6EA;
|
|
label{
|
|
width: 100%;
|
|
}
|
|
}
|
|
.CheckHistory{
|
|
margin-top: 1em;
|
|
padding: 0.5em;
|
|
border-radius: 0.5em;
|
|
margin-bottom: 1em;
|
|
font-size: 0.8125rem;
|
|
-webkit-transition: all 200ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
|
|
-moz-transition: all 200ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
|
|
-ms-transition: all 200ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
|
|
-o-transition: all 200ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
|
|
transition: all 200ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
|
|
background: none;
|
|
border: none;
|
|
color: $theme-color-main;
|
|
box-shadow: $theme-color-main 0 0px 0px 2px inset;
|
|
|
|
&:hover {
|
|
color: #fff;
|
|
box-shadow:$theme-color-main 0 0px 0px 40px inset;
|
|
}
|
|
}
|
|
#new-ask-question{
|
|
clear: both;
|
|
}
|
|
.CheckStatus{
|
|
@media(min-width: 1025px){
|
|
right: 20%;
|
|
position: relative;
|
|
}
|
|
float: right;
|
|
padding: 0.5em;
|
|
border-radius: 0.5em;
|
|
margin-bottom: 1em;
|
|
font-size: 0.8125rem;
|
|
-webkit-transition: all 200ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
|
|
-moz-transition: all 200ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
|
|
-ms-transition: all 200ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
|
|
-o-transition: all 200ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
|
|
transition: all 200ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
|
|
background: none;
|
|
border: none;
|
|
color:#337ab7!important;
|
|
box-shadow: #337ab7 0 0px 0px 2px inset;
|
|
|
|
&:hover {
|
|
color: #fff!important;
|
|
box-shadow:#337ab7 0 0px 0px 40px inset;
|
|
}
|
|
} |