User:Valento/common.css
Jump to navigation
Jump to search
Note: After saving, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
- Opera: Press Ctrl-F5.
.dialog-text {
position: relative;
display: inline-block;
padding: 1px 4px;
background-color: #333;
}
.dialog-text:before {
/*position: absolute;
display: inline-block;
border-top: 7px solid transparent;
border-right: 7px solid #eee;
border-bottom: 7px solid transparent;
border-right-color: rgba(0, 0, 0, 0.2);
left: -8px;
top: 20px;
content: '';*/
position: absolute;
display: inline-block;
border-left: 0.8em solid transparent;
border-bottom: 1.7em solid #333;
left: -0.8em;
top: 0;
content: '';
}
.dialog-text:after {
/*position: absolute;
display: inline-block;
border-top: 6px solid transparent;
border-right: 6px solid #eee;
border-bottom: 6px solid transparent;
left: -6px;
top: 21px;
content: '';*/
position: absolute;
display: inline-block;
border-left: 0.8em solid #333;
border-bottom: 1.7em solid transparent;
left: 100%;
top: 0;
content: '';
}
.dialog-text.golden-warning {
text-shadow: 0 0.02em 0.2em #ab6a07;
color: #ffecb3;
font-weight: bold;
}