Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 espaco 1
// comments
2
.mt-comments {
3
	.mt-comment {
4
		padding: 10px;
5
		margin: 0 0 10px 0;
6
 
7
		.mt-comment-img {
8
			width: 40px;
9
			float: left;
10
 
11
			> img {
12
				border-radius: 50% !important;
13
			}
14
		}
15
 
16
		.mt-comment-body {
17
			padding-left: 20px;
18
			position: relative;
19
			overflow:hidden;
20
 
21
			.mt-comment-info {
22
				@include clearfix();
23
 
24
				.mt-comment-author {
25
					display: inline-block;
26
					float: left;
27
					margin: 0px 0px 10px 0;
28
					color:#060606;
29
					font-weight: 600;
30
				}
31
 
32
				.mt-comment-date {
33
					display: inline-block;
34
					float:right;
35
					margin: 0px;
36
					color:#BABABA;
37
				}
38
			}
39
 
40
			.mt-comment-text {
41
				color: darken(#BFBFBF, 15%);
42
			}
43
 
44
			.mt-comment-details {
45
				margin:10px 0px 0px 0;
46
 
47
				.mt-comment-status {
48
					text-transform: uppercase;
49
					float: left;
50
 
51
					&.mt-comment-status-pending {
52
						color:#B8C0F5;
53
					}
54
 
55
					&.mt-comment-status-approved {
56
						color:#6BD873;
57
					}
58
 
59
					&.mt-comment-status-rejected {
60
						color:red;
61
					}
62
				}
63
 
64
				.mt-comment-actions {
65
					display: none;
66
					list-style: none;
67
					margin: 0;
68
					padding: 0;
69
					float: right;
70
 
71
					> li {
72
						float: left;
73
						padding: 0 5px;
74
						margin: 0;
75
 
76
						> a {
77
							text-transform: uppercase;
78
							color: #999999;
79
 
80
							&:hover {
81
								color: darken(#999999, 20%);
82
								text-decoration: none;
83
							}
84
						}
85
					}
86
				}
87
			}
88
		}
89
 
90
		&:hover {
91
			background: #f9f9f9;
92
 
93
			.mt-comment-body {
94
				.mt-comment-details {
95
					.mt-comment-actions {
96
						display: inline-block;
97
					}
98
				}
99
			}
100
		}
101
	}
102
}