| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501 |
- /* Transversal */
- .error {
- color: red;
- font-weight: 700;
- }
- .valid {
- color: green;
- }
- .annotation {
- color: #595959;
- font-size: 0.8em;
- }
- .clickable {
- cursor: pointer;
- }
- .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;
- }
- a.anchor {
- display: block;
- position: relative;
- top: -100px;
- visibility: hidden;
- }
- @media screen and (max-width: 1550px) {
- .hide-on-medium-screen {
- display: none;
- }
- }
- @media screen and (max-width: 1300px) {
- .hide-on-small-screen {
- 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
- }
- select[multiple] {
- height: 12em;
- }
- select[multiple] option {
- padding: 0.3em 0.5em;
- }
- .raw-input {
- }
- .backlog-editor-col1 {
- width: 80%;
- }
- .backlog-editor-col2 {
- width: 100px;
- }
- .backlog-editor-col2 form {
- margin: 0;
- }
- .backlog-editor-col2 input {
- height: 2em !important;
- line-height: 2em !important;
- padding: 3px !important;
- margin: 0 !important;
- }
- .backlog-editor-col3 {
- display: flex;
- flex-direction: row;
- justify-content: space-around;
- }
- .messages {
- text-align: center;
- list-style: none;
- }
- /* Main Header */
- #header {
- z-index: 1000 !important;
- }
- #header .right {
- display: flex;
- flex-direction: row;
- align-items: center;
- flex-wrap: nowrap;
- }
- #header .right > * {
- margin-right: 2em;
- }
- #search-bar {
- margin-bottom: 0;
- }
- #search-bar input {
- height: 2.5em;
- line-height: 2.5em;
- padding-left: 2em;
- }
- #search-bar .fa-search {
- position: absolute;
- left: 8px;
- top: 35px;
- font-size: 14px;
- color: #999999;
- }
- /* 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: 260px;
- 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;
- }
- .dropdown-content>a {
- width: 100%;
- }
- #notif-dropdown {
- min-width: 320px;
- }
- /* 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;}
- /* Notifications */
- .notif-list {
- max-height: 400px;
- overflow: auto;
- margin-bottom: 0.5em;
- }
- .notif {
- margin: 0.5em;
- line-height: 2em;
- }
- .notif-head {
- display: flex;
- flex-direction: row;
- text-align: left;
- font-size: 11px;
- }
- .notif-head a {
- color: #a6a6a6;
- padding: 0.1 em 0.2em;
- }
- .notif-content {
- display: flex;
- flex-direction: row;
- justify-content: space-around;
- font-size: 12px;
- }
- .notif-content a {
- color: #4183c4;
- margin: 0;
- padding: 0;
- }
- .notif-footer {
- line-height: 1.5em;
- margin-bottom: 1em;
- }
- .notif-footer a {
- color: #4183c4;
- }
- /* Main */
- #main-pannel {
- width: 50%;
-
- }
- #left-pannel, #right-pannel {
- margin: 0 5%;
- display: flex;
- flex-direction: column;
- width: 15%;
- }
- /* 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;
- }
- /* Commentaires */
- .comment-header {
- color: #25a2c3;
- font-size: 1rem;
- font-weight: 700;
- }
- #comment-section {
- margin: 0 2.5%;
- }
- #comment-section .martor-field {
- height: 50px;
- }
- .comment-list {
- list-style: none;
- padding-left: 0;
- }
- .comment:first-child {
- border-top: 0;
- padding-top: 0;
- }
- .comment {
- border-top: solid 1px #dee1e3;
- padding: 0.5em 0;
- }
- #comment-section .comment-display {
- border-left: solid 2px #d3c5c5;
- padding: 5px 20px;
- margin: 10px;
- }
- /* Add a slash symbol (/) before/behind each list item */
- #breadcrumb li+li:before {
- padding: 8px;
- color: #f6755e;
- content: "/\00a0";
- }
- /* Index */
- .story-title a {
- color: #2e2e2e;
- font-size: 14px;
- font-wright: 600;
- text-decoration: none;
- }
- .story-title a:hover {
- text-decoration: underline;
- }
- .running {
- color: #006622;
- height: 22px;
- font-size: 12px;
- font-weight: 600;
- padding: 0 8px;
- border: solid 1px #006622;
- border-radius: 4px;
- }
- /* 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;
- }
- .pagination {
- display: flex;
- flex-direction: row;
- justify-content: center;
- }
- .pagination a {
- margin: 0 5px;
- font-weight: 700;
- font-size: 15px;
- padding: 2px;
- }
- /* Stories detail */
- .title-bar * {
- margin-top: 0;
- margin-bottom: 0;
- }
- .weight-tag {
- background-color: #c1260b;
- height: 1.5em;
- width: 2em;
- text-align: center;
- border-radius: 2em;
- color: white;
- font-weight: 700;
- font-size: 1.5em;
- padding-top: 0.2em;
- margin-right: 1em;
- }
- /* Report: sprints list */
- .sprints-list {
- list-style: none;
- }
- .sprint-li {
- padding: 25px !important;
- }
- .sprint-retro {
- border-left: solid 2px #d3c5c5;
- padding: 10px 20px;
- margin: 20px;
- }
- /* Sprint cloture */
- .already-checked {
- color: green !important;
- background: none !important;
- pointer-events: none;
- }
|