dolibarr 21.0.3
emaillayout.inc.php
1<?php
2if (!defined('ISLOADEDBYSTEELSHEET')) {
3 die('Must be call by steelsheet');
4}
5?>
6/* IDE Hack <style type="text/css"> */
7
8.template-container {
9 display: flex;
10 justify-content: space-between;
11 padding: 10px;
12 background: #f5f5f5;
13 border: 1px solid #d3d3d3;
14 border-radius: 5px;
15 margin-bottom: 15px;
16 }
17
18 .template-option {
19 text-align: center;
20 padding: 10px;
21 margin: 0 5px;
22 background: #e9e9e9;
23 border: 1px solid #ccc;
24 border-radius: 5px;
25 cursor: pointer;
26 height: 60px;
27 width: 60px;
28 display: inline-block;
29 align-items: center;
30 justify-content: center;
31 }
32
33 .template-option:hover {
34 font-weight: bold;
35 background: var(--butactionbg);
36 color: var(--textbutaction);
37 border-radius: 8px;
38 border-collapse: collapse;
39 }
40
41 .template-option[data-template="ai"] {
42 background: #c5f7c5;
43 }
44
45 .template-option[data-template="ai"]:hover {
46 font-weight: bold;
47 background: var(--butactionbg);
48 color: var(--textbutaction);
49 border-radius: 8px;
50 border-collapse: collapse;
51 border: none;
52 }
53
54 .template-option.selected {
55 font-weight: bold;
56 background: var(--butactionbg);
57 color: var(--textbutaction);
58 border-radius: 8px;
59 border-collapse: collapse;
60 border: none;
61}
62
63 #template-selector {
64 /* width: 100%;
65 max-width: 80%; */
66 height: auto;
67 padding: 10px;
68 border: 1px solid #d3d3d3;
69 border-radius: 5px;
70 margin-bottom: 10px;
71 margin-top: 10px;
72 width: fit-content;
73 }
74
75 .template-option[data-template="ai"] i {
76 font-size: 42px;
77 display: block;
78 width: 80%;
79 max-height: 80px;
80 margin: 0 5px;
81 padding-top: 5px;
82 border-radius: 5px;
83
84}
85
86.template-option[data-template="ai"] span {
87 padding-top: 30px;
88 font-size: 14px;
89
90}
91
92.template-option-text {
93 padding-top: 3px;
94 font-size: 14px;
95}
96
97#ai_input {
98 display: none;
99}
100
101.template-option img {
102 display: block;
103 width: 80%;
104 max-height: 80px;
105 margin: 0 5px;
106 padding-top: 5px;
107 border-radius: 7px;
108}