Remove glyphicon leftovers. (#2753)

This commit is contained in:
XhmikosR 2020-06-01 15:07:35 +03:00 committed by GitHub
parent a26f303c69
commit 1451820057
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 1 additions and 23 deletions

View file

@ -74,7 +74,6 @@
> .fas,
> .far,
> .fab,
> .glyphicon,
> .ion {
display: block;
font-size: 20px;

View file

@ -412,7 +412,6 @@ html.maximized-card {
> .fas,
> .far,
> .fab,
> .glyphicon,
> .ion {
cursor: pointer;
margin-right: 5px;

View file

@ -12,7 +12,6 @@
> .fas,
> .far,
> .fab,
> .glyphicon,
> .ion {
display: inline-block;
font-size: 40px;

View file

@ -40,7 +40,6 @@
&.fas,
&.far,
&.fab,
&.glyphicon,
&.ion {
line-height: $input-height;
}
@ -52,7 +51,6 @@
&.fas,
&.far,
&.fab,
&.glyphicon,
&.ion {
line-height: $input-height-lg;
}
@ -64,7 +62,6 @@
&.fas,
&.far,
&.fab,
&.glyphicon,
&.ion {
line-height: $input-height-lg;
}
@ -77,7 +74,6 @@
&.fas,
&.far,
&.fab,
&.glyphicon,
&.ion {
line-height: $input-height-sm;
}
@ -89,7 +85,6 @@
&.fas,
&.far,
&.fab,
&.glyphicon,
&.ion {
line-height: $input-height-sm;
}

View file

@ -21,7 +21,6 @@
> .fas,
> .far,
> .fab,
> .glyphicon,
> .ion {
font-size: $font-size-sm;
}

View file

@ -121,7 +121,6 @@
&.fas,
&.far,
&.fab,
&.glyphicon,
&.ion {
font-size: 1.1rem;
}

View file

@ -268,7 +268,6 @@
> .fas,
> .far,
> .fab,
> .glyphicon,
> .ion {
color: $gray-800;
}
@ -280,7 +279,6 @@
> .fas,
> .far,
> .fab,
> .glyphicon,
> .ion {
color: $gray-400;
}

View file

@ -107,7 +107,6 @@
&.fas,
&.far,
&.fab,
&.glyphicon,
&.ion {
font-size: 70px;
top: 20px;
@ -127,7 +126,6 @@
&.fas,
&.far,
&.fab,
&.glyphicon,
&.ion {
transform: scale(1.1);
}

View file

@ -88,7 +88,6 @@
> .fas,
> .far,
> .fab,
> .glyphicon,
> .ion {
background: $gray-500;
border-radius: 50%;

View file

@ -101,7 +101,6 @@
.fas,
.far,
.fab,
.glyphicon,
.ion {
transition: transform linear .3s;

View file

@ -1129,20 +1129,14 @@
$(this).data('clicks', !clicks)
})
//Handle starring for glyphicon and font awesome
//Handle starring for font awesome
$('.mailbox-star').click(function (e) {
e.preventDefault()
//detect type
var $this = $(this).find('a > i')
var glyph = $this.hasClass('glyphicon')
var fa = $this.hasClass('fa')
//Switch states
if (glyph) {
$this.toggleClass('glyphicon-star')
$this.toggleClass('glyphicon-star-empty')
}
if (fa) {
$this.toggleClass('fa-star')
$this.toggleClass('fa-star-o')