2023-02-20 03:43:53 +01:00
|
|
|
/* entries */
|
|
|
|
.gb_entries {
|
|
|
|
border: 0px solid #00000000;
|
|
|
|
border-collapse: collapse;
|
|
|
|
margin: 16px 10px;
|
|
|
|
width: 99%
|
|
|
|
}
|
|
|
|
.gb_entries tr {
|
|
|
|
border: 0 !important;
|
|
|
|
border-bottom: 1px solid #e2e4e2 !important;
|
|
|
|
transition: 250ms ease;
|
|
|
|
}
|
|
|
|
.gb_entries tr:hover {
|
|
|
|
background-color: #c2c4c220;
|
|
|
|
}
|
|
|
|
.gb_entries tr:target {
|
|
|
|
background-color: #91c29120;
|
|
|
|
}
|
2023-02-19 16:12:09 +01:00
|
|
|
.gb_entry_text {
|
|
|
|
padding: 0 8px;
|
|
|
|
vertical-align: middle;
|
2023-02-20 03:43:53 +01:00
|
|
|
border-left: 1px solid #c2c4c2;
|
|
|
|
border-collapse: collapse;
|
2023-02-19 16:12:09 +01:00
|
|
|
}
|
|
|
|
.gb_entry_text .gb_entry_text_title {
|
|
|
|
font-size:9pt;
|
|
|
|
font-weight:bold;
|
|
|
|
margin:0;
|
|
|
|
padding:0;
|
|
|
|
padding-top:1em
|
2023-02-20 03:43:53 +01:00
|
|
|
}
|
|
|
|
.gb_sender_data {
|
|
|
|
padding:0 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gb_hidden_mail {
|
|
|
|
display:inline-block;
|
2023-02-20 05:07:48 +01:00
|
|
|
height:10pt;
|
2023-02-20 03:43:53 +01:00
|
|
|
border-radius:4px;
|
|
|
|
background:#666d65;
|
|
|
|
transform: translateY(1px);
|
|
|
|
border: 1px solid #4f534e;
|
|
|
|
box-sizing: border-box;
|
|
|
|
transition: 150ms ease;
|
|
|
|
font-size:7pt;
|
|
|
|
color: #eaeaea;
|
|
|
|
text-align: center;
|
|
|
|
user-select: none;
|
|
|
|
box-shadow: inset 0 1px 2px #fefefe20 1px 2px #30303040;
|
|
|
|
content: '';
|
|
|
|
min-width: 100px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gb_hidden_mail:hover {
|
|
|
|
background: #7e8b7b;
|
|
|
|
}
|
|
|
|
.gb_hidden_mail:hover::before {
|
|
|
|
content: 'Email is hidden';
|
|
|
|
}
|
|
|
|
|
2023-02-20 06:36:55 +01:00
|
|
|
.gb_entry_message_text {
|
|
|
|
margin:0;
|
|
|
|
padding:0;
|
|
|
|
font-size:10pt;
|
|
|
|
max-width:800px;
|
|
|
|
height:300px;
|
|
|
|
word-wrap:break-word
|
|
|
|
}
|
2023-02-20 03:43:53 +01:00
|
|
|
|
|
|
|
/* ui elements */
|
|
|
|
|
|
|
|
/* delete record button */
|
|
|
|
.gb_record_del_btn {
|
|
|
|
user-select: none;
|
|
|
|
box-shadow:inset 0px 1px 0px 0px #cf866c;
|
|
|
|
background:linear-gradient(to bottom, #d0451b 5%, #bc3315 100%);
|
|
|
|
background-color:#d0451b;
|
|
|
|
border-radius:6px;
|
|
|
|
border:1px solid #942911;
|
|
|
|
display:inline-block;
|
|
|
|
cursor:pointer;
|
|
|
|
color:#ffffff;
|
|
|
|
font-family:Arial;
|
|
|
|
font-size:12px;
|
|
|
|
font-weight:bold;
|
|
|
|
padding:2px 10px;
|
|
|
|
text-decoration:none;
|
|
|
|
text-shadow:0px 1px 0px #854629;
|
|
|
|
}
|
|
|
|
.gb_record_del_btn:hover {
|
|
|
|
background:linear-gradient(to bottom, #bc3315 5%, #d0451b 100%);
|
|
|
|
background-color:#bc3315;
|
|
|
|
}
|
|
|
|
.gb_record_del_btn:active {
|
|
|
|
position:relative;
|
|
|
|
top:1px;
|
2023-02-19 16:12:09 +01:00
|
|
|
}
|