1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 14:00:31 +02:00
Files
php-phpbb/phpBB/styles/prosilver/theme/icons.css
hanakin 98479f235b [ticket/15071] Fix cahnges
PHPBB3-15071
2017-09-23 11:24:32 -04:00

106 lines
2.0 KiB
CSS

/* -------------------------------------------------------------- /*
$Icons
/* -------------------------------------------------------------- */
/* Global module setup
---------------------------------------- */
/* Renamed version of .fa class for agnostic useage of icon fonts.
* Just change the name of the font after the 14/1 to the name of
* the font you wish to use.
*/
.icon,
.button .icon,
blockquote cite:before,
.uncited:before {
font-family: FontAwesome;
font-size: 14px;
font-weight: normal;
font-style: normal;
font-variant: normal;
-webkit-font-smoothing: antialiased;
line-height: 1;
display: inline-block;
/* stylelint-disable order/declaration-block-properties-specified-order */
-moz-osx-font-smoothing: grayscale;
/* stylelint-enable order/declaration-block-properties-specified-order */
text-rendering: auto; /* optimizelegibility throws things off #1094 */
}
.icon:before {
padding-right: 2px;
}
.button .icon:before {
padding-right: 0;
}
/* Icon size classes - Default size is 14px, use these for small variations */
.icon.icon-xl {
font-size: 20px;
}
.icon.icon-lg {
font-size: 16px;
}
.icon.icon-md {
font-size: 10px;
}
.icon.icon-sm {
font-size: 8px;
}
/* icon modifiers */
.icon-tiny {
font-size: 16px;
vertical-align: text-bottom;
width: 12px;
-webkit-transform: scale(0.65, 0.75);
transform: scale(0.65, 0.75);
}
.arrow-right .icon {
float: right;
}
.arrow-left:hover .icon {
margin-right: 5px;
margin-left: -5px;
}
.arrow-left .icon {
float: left;
}
.arrow-right:hover .icon {
margin-right: -5px;
margin-left: 5px;
}
.post-buttons .dropdown-contents .icon {
float: right;
margin-left: 5px;
}
.alert_close .icon:before {
line-height: 0.9;
border-radius: 50%;
display: block;
width: 11px;
height: 12px;
padding: 0;
}
blockquote cite:before,
.uncited:before {
content: "\f10d"; /* Font Awesome quote-left */
}
.rtl blockquote cite:before,
.rtl .uncited:before {
content: "\f10e"; /* Font Awesome quote-right */
}