storyboard-webclient/src/theme/base/_stories.scss

83 lines
1.6 KiB
SCSS

/*
* Copyright (c) 2016 Codethink Ltd.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License. You may obtain
* a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*/
/**
* Story view styles
*/
/* "Related Worklists" table style */
.position-label {
margin-left: 5px;
}
/* "Story Detail" tags link style */
.tag-label-link {
text-decoration:none;
color:#ffffff;
}
.tag-label-link:hover{
text-decoration:none;
color:#ffffff;
}
.label .fa-times{
opacity:0.5;
}
.label .fa-times:hover{
cursor:pointer;
opacity:1;
}
#query .dropdown-menu > li{
padding-left:1rem;
}
.preview-story {
/* scroll bar shown if needed*/
max-height: 200px;
overflow-y: auto;
pre{
background-color: #fff;
border: none;
}
/* scroll bar styling*/
/* width */
&::-webkit-scrollbar {
width: 10px;
}
/* Track */
&::-webkit-scrollbar-track {
box-shadow: inset 0 0 5px grey;
border-radius: 10px;
}
/* Handle */
&::-webkit-scrollbar-thumb {
background: grey;
border-radius: 10px;
}
}
.new-textArea{
/* scroll bar shown if needed*/
max-height: 200px;
overflow-y: auto;
}