| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233 |
- /* Transversal */
- .error {
- color: red;
- font-weight: 700;
- }
- .valid {
- color: green;
- }
- .annotation {
- color: #595959;
- font-size: 0.8em;
- }
- .datatable {
- width: 100% !important;
- }
- .flex-row{
- display: flex;
- flex-direction: row;
- }
- .flex-col{
- display: flex;
- flex-direction: column;
- }
- .flex-extend{
- flex: 1;
- }
- .flex-end{
- justify-content: flex-end;
- }
- .flex-space-around {
- justify-content: space-around;
- }
- .flex-align-center {
- align-items: center;
- }
- .hidden {
- display: none;
- }
- .disabled{
- pointer-events: none;
- color: #cccccc !important;
- }
- .fa {
- margin-right: 0.3em;
- }
- select[multiple] {
- padding-top: 0.8em;
- min-height: 5em;
- }
- .tool-btn {
- padding-top: 0;
- padding-right: 1em;
- height: 2.5em;
- font-size: 1em;
- line-height: 2.5em;
- }
- .description {
- padding: 1em;
- margin: 1em 1em 2em 1em;
- }
- .description h1, h2, h3, h4, h5 {
- color: #333333;
- }
- .tags-list {
- list-style: none;
- }
- .tags-list li {
- display: inline;
- }
- .tags-list li:not(:first-child) {
- border-left: solid 1px #bfbfbf;
- margin-left: 1em;
- }
- [data-url] {
- cursor: pointer;
- }
- [data-url]:hover{
- background-color: #b3d9ff;
- }
- td {
- vertical-align: middle;
- }
- .helptext {
- display: none;
- }
- .errorlist {
- color: red
- }
- /* The container <div> - needed to position the dropdown content */
- .dropdown {
- position: relative;
- display: inline-block;
- }
- /* Dropdown Content (Hidden by Default) */
- .dropdown-content {
- display: none;
- position: absolute;
- background-color: #f1f1f1;
- min-width: 320px;
- box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
- z-index: 1;
- right: 0;
- }
- /* Links inside the dropdown */
- .dropdown-content a {
- color: black;
- padding: 0 16px;
- text-decoration: none;
- display: block;
- }
- /* Change color of dropdown links on hover */
- .dropdown-content a:hover {
- text-decoration: underline !important;
- }
- /* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
- .show {display:block;}
- /* Breadcrumb */
- #breadcrumb {
- margin: 1em 15%;
- list-style: none;
- overflow: hidden;
-
- }
- #breadcrumb li {
- display: inline;
- }
- #breadcrumb a {
- font-size: 12px;
- color: #f6755e;
- cursor: pointer;
- }
- #breadcrumb a:not([href]){
- cursor: default;
- }
- #breadcrumb a[href]:hover {
- text-decoration: underline;
- color: #727a82;
- }
- /* Add a slash symbol (/) before/behind each list item */
- #breadcrumb li+li:before {
- padding: 8px;
- color: #f6755e;
- content: "/\00a0";
- }
- /* Index */
- .issue-title a {
- color: #2e2e2e;
- font-size: 14px;
- font-wright: 600;
- text-decoration: none;
- }
- .issue-title a:hover {
- text-decoration: underline;
- }
- /* Epic details */
- .story-closed {
- text-decoration: line-through #666666 !important;
- color: #666666 !important;
- }
- /* Stories index */
- .filters-bar {
- align-items: center;
- display: flex;
- flex-direction: row;
- margin-bottom: 1.5em;
- }
- .filters-bar > * {
- margin: 0 0.5em;
- height: 2em;
- }
- .controls {
- display: flex;
- flex-direction: row;
- justify-content: flex-end;
- margin: 0;
- }
- .controls > * {
- margin: 0 0.5em;
- }
|