File: message.css

package info (click to toggle)
webcit 8.24-dfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 10,888 kB
  • ctags: 4,214
  • sloc: ansic: 33,336; sh: 4,468; makefile: 340; xml: 90; sed: 9
file content (106 lines) | stat: -rw-r--r-- 2,172 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
.message, .entmsg{
	background-color: #deded0;
	margin: 0.5em 1em;
/*	border: 1px solid #5C646B; */
	-webkit-box-shadow: #666 0px 2px 3px;
	-moz-box-shadow: #666 0px 2px 3px;
	box-shadow: #666 0px 2px 3px;
/*	behavior: url(/static/styles/PIE.htc);*/
}

.entmsg { height: 95%; }

.message_header {
	font-size: x-small;
	padding: 0.5em;
}

.message_content {
	background-color: #fff;
	padding: 0.5em;
	clear: both;
}


.message_subject {
	font-size: medium;
	font-style: italic;
	float: left;
}

.message_header span, .message_header a { font-weight: bold; }

.message_header p {
        margin: 3px 0;
        padding: 0;
}


.message_content > div > div { text-align: justify !important }

.message form div label, .entmsg form div label {
	display: block;
	float: left;
	margin: 0.3em;
	width: 9em;
	text-align: right;
}
 
.message form div input, .message form div select, .entmsg form div input, .entmsg form div select {
	margin: 0.3em;
}

.msgbuttons {
	float: right;
	font-size: 80%;
	line-height: 2em;
}

.msgbuttons a {
	font-size: x-small;
	display: inline-block;
	margin-left: 0.3em;
}

/* Blockquotes in messages need to be distingushable */
/* there is a lot of cascading happen io order to make it look beautiful */
/* if you make changes here, port them to WEBCIT-TINYMCE.css! */
.message_content blockquote {
	/*border: 1px solid #5C646B;*/
	padding: 0.2em;
	margin: 0.3em 0.5em;
}

.message_content blockquote .message_header span {
	display: inline-block;
}

.message_content blockquote .message_header span.message_subject {
	display: block;
	float: none;
}

/*top border of message headerrs in a blockquote need to be transparent*/
blockquote .message_header {          
	padding: 0;
	background-color: #deded0;
}

/*make bottom border of content inside of a blockquote rounded, so it fits the blockquote*/
blockquote .message_content {
	padding: 0;
	background-color: transparent;
	margin: 0.3em;
}
/* --- End of blockquoting block --- */


.message img {
	max-width: 700px;
	padding: 10px;
	background-color: #fff;
	border: 1px solid #5C646B;
	box-shadow: #666 0px 2px 3px;
	-webkit-box-shadow: #666 0px 1px 2px;
	-moz-box-shadow: #666 0px 2px 3px;
}