dolibarr 21.0.3
timeline.inc.php
1<?php
11if (!defined('ISLOADEDBYSTEELSHEET')) {
12 die('Must be call by steelsheet');
13} ?>
14
15/* IDE Hack <style type="text/css"> */
16
17
18/*
19* Component: Timeline
20* -------------------
21*/
22.timeline {
23 position: relative;
24 margin: 0 0 30px 0;
25 padding: 0;
26 list-style: none;
27}
28.timeline:before {
29 content: '';
30 position: absolute;
31 top: 0;
32 bottom: 0;
33 width: 4px;
34 background: #ddd;
35 left: 25px;
36 margin: 0;
37 border-radius: 2px;
38}
39.timeline > li {
40 position: relative;
41 margin-right: 0;
42 margin-bottom: 15px;
43}
44.timeline > li:before,
45.timeline > li:after {
46 content: " ";
47 display: table;
48}
49.timeline > li:after {
50 clear: both;
51}
52.timeline > li > .timeline-item {
53 -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
54 box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
55 border:1px solid #d2d2d2;
56 border-radius: 3px;
57 margin-top: 0;
58 background: #fff;
59 color: #444;
60 margin-left: 50px;
61 margin-right: 0px;
62 padding: 0;
63 position: relative;
64}
65
66.timeline > li.timeline-code-ticket_msg_private > .timeline-item,
67.timeline > li.timeline-code-ticket_msg_private_sentbymail > .timeline-item {
68 background: #fffbe5;
69 border-color: #d0cfc0;
70}
71
72
73.timeline > li > .timeline-item > .time{
74 color: #6f6f6f;
75 float: right;
76 padding: 10px;
77 font-size: 12px;
78}
79
80
81.timeline > li > .timeline-item > .timeline-header-action{
82 color: #6f6f6f;
83 float: right;
84 padding: 7px;
85 font-size: 12px;
86}
87
88
89a.timeline-btn:link,
90a.timeline-btn:visited,
91a.timeline-btn:hover,
92a.timeline-btn:active
93{
94 display: inline-block;
95 margin-bottom: 0;
96 font-weight: 400;
97 border-radius: 0;
98 box-shadow: none;
99 padding: 1px 5px;
100 font-size: 12px;
101 line-height: 1.5;
102 text-align: center;
103 white-space: nowrap;
104 vertical-align: middle;
105 touch-action: manipulation;
106 cursor: pointer;
107 user-select: none;
108 background-image: none;
109 text-decoration: none;
110 background-color: #f4f4f4;
111 color: #444;
112 border: 1px solid #ddd;
113}
114
115a.timeline-btn:hover
116{
117 background-color: #e7e7e7;
118 color: #333;
119 border-color: #adadad;
120}
121
122
123.timeline > li > .timeline-item > .timeline-header {
124 margin: 0;
125 color: #333;
126 border-bottom: 1px solid #f4f4f4;
127 padding: 10px;
128 font-size: 1em;
129 font-weight: normal;
130 line-height: 1.1;
131}
132
133.timeline > li > .timeline-item > .timeline-footer {
134 border-top: 1px solid #f4f4f4;
135}
136
137.timeline > li.timeline-code-ticket_msg_private > .timeline-item > .timeline-header, .timeline > li.timeline-code-ticket_msg_private > .timeline-item > .timeline-footer {
138 border-color: #ecebda;
139}
140
141.timeline > li > .timeline-item > .timeline-header > a {
142 font-weight: 600;
143}
144.timeline > li > .timeline-item > .timeline-body,
145.timeline > li > .timeline-item > .timeline-footer {
146 padding: 10px;
147}
148.timeline > li > .fa,
149.timeline > li > .fas,
150.timeline > li > .glyphicon,
151.timeline > li > .ion {
152 width: 30px;
153 height: 30px;
154 font-size: 1em;
155 line-height: 30px;
156 position: absolute;
157 color: #666;
158 background: #d2d6de;
159 border-radius: 50%;
160 text-align: center;
161 left: 12px;
162 top: 5px;
163}
164.timeline > .time-label > span {
165 font-weight: 600;
166 padding: 5px;
167 display: inline-block;
168 background-color: #fff;
169 border-radius: 4px;
170}
171.timeline-inverse > li > .timeline-item {
172 background: #f0f0f0;
173 border: 1px solid #ddd;
174 -webkit-box-shadow: none;
175 box-shadow: none;
176}
177.timeline-inverse > li > .timeline-item > .timeline-header {
178 border-bottom-color: #ddd;
179}
180
181.timeline-icon-todo,
182.timeline-icon-in-progress,
183.timeline-icon-done{
184 color: #fff !important;
185}
186
187.timeline-icon-not-applicble{
188 color: #000;
189 background-color: #f7f7f7;
190}
191
192.timeline-icon-todo{
193 background-color: #dd4b39 !important;
194}
195
196.timeline-icon-in-progress{
197 background-color: #00c0ef !important;
198}
199.timeline-icon-done{
200 background-color: #00a65a !important;
201}
202
203
204.timeline-badge-date{
205 background-color: #0073b7 !important;
206 color: #fff !important;
207}
208
209.timeline-item .messaging-title {
210 word-break: break-all;
211}
212
213.timeline-documents-container{
214
215}
216
217.timeline-documents{
218 margin-right: 5px;
219}
220
221.messaging-author {
222 width: 100px;
223}
224
225.readmore-block.--closed .readmore-block__full-text, .readmore-block.--open .readmore-block__excerpt{
226 display: none;
227}
228
229.read-less-link, .read-more-link{
230 font-weight: bold;
231}
232
233.read-less-link{
234 display: block;
235 text-align: center;
236}
237
238
239 .read-less-link .fa, .read-more-link .fa{
240 color: inherit;
241}
242
243/* Force values for small screen 767 */
244@media only screen and (max-width: 767px)
245{
246 .messaging-author.inline-block {
247 padding-bottom: 10px;
248 }
249}
print $object position
Definition edit.php:204
treeview li table
No Email.
$conf db user
Active Directory does not allow anonymous connections.
Definition repair.php:154