blob: e08088092f0a342fd90ea8e4422cc0cd0fc83f51 [file] [log] [blame]
Kanchan Chauhanb3fe6a42016-03-16 18:01:22 +05301/* CSS used here will be applied after bootstrap.css */
2
3.underline {
4 text-decoration: underline;
5}
6
7.page-container .indicator {
8 font-weight: normal;
9}
10
11.page-container .project-item {
12 padding-top: 5px;
13 padding-bottom: 5px;
14}
15
16.row-header {
17 font-size: 14px;
18 font-weight: 500;
19 padding-bottom: 8px;
20 border-bottom: 2px solid #d1d8dd;
21 margin: 0!important;
22}
23
24.content_display{
25 padding: 5px;
26}
27
28.task-btn, .issue-btn, .timelog-btn{
29 padding: 8px;
30}
31
32.timeline-centered {
33 position: relative;
34 margin-bottom: 30px;
35}
36
37.timeline-centered:before {
38 content: '';
39 position: absolute;
40 display: block;
41 width: 4px;
42 background: #f5f5f6;
43 /*left: 50%;*/
44 top: 20px;
45 bottom: 20px;
46 margin-left: 30px;
47}
48
49.timeline-centered .timeline-entry {
50 position: relative;
51 /*width: 50%;
52float: right;*/
53 margin-top: 5px;
54 margin-left: 30px;
55 margin-bottom: 10px;
56 clear: both;
57}
58
59
60
61.timeline-centered .timeline-entry.left-aligned .timeline-entry-inner .timeline-label:after {
62 left: auto;
63 right: 0;
64 margin-left: 0;
65 margin-right: -9px;
66 -moz-transform: rotate(180deg);
67 -o-transform: rotate(180deg);
68 -webkit-transform: rotate(180deg);
69 -ms-transform: rotate(180deg);
70 transform: rotate(180deg);
71}
72
73.timeline-centered .timeline-entry .timeline-entry-inner {
74 position: relative;
75 margin-left: -20px;
76}
77
78
79.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon {
80 background: #fff;
81 color: #737881;
82 display: block;
83 width: 40px;
84 height: 40px;
85 -webkit-background-clip: padding-box;
86 -moz-background-clip: padding;
87 background-clip: padding-box;
88 -webkit-border-radius: 20px;
89 -moz-border-radius: 20px;
90 border-radius: 20px;
91 text-align: center;
92 -moz-box-shadow: 0 0 0 5px #f5f5f6;
93 -webkit-box-shadow: 0 0 0 5px #f5f5f6;
94 box-shadow: 0 0 0 5px #f5f5f6;
95 line-height: 40px;
96 font-size: 15px;
97 float: left;
98}
99
100
101.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-warning {
102 background-color: #fad839;
103 color: #fff;
104}
105
106
107.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label {
108 position: relative;
109 background: #f5f5f6;
110 padding: 1em;
111 margin-left: 60px;
112 -webkit-background-clip: padding-box;
113 -moz-background-clip: padding;
114 background-clip: padding-box;
115 -webkit-border-radius: 3px;
116 -moz-border-radius: 3px;
117 border-radius: 3px;
118}
119
120.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label:after {
121 content: '';
122 display: block;
123 position: absolute;
124 width: 0;
125 height: 0;
126 border-style: solid;
127 border-width: 9px 9px 9px 0;
128 border-color: transparent #f5f5f6 transparent transparent;
129 left: 0;
130 top: 10px;
131 margin-left: -9px;
132}