Update XStatic-MDI to 1.6.50.0

Change-Id: I2654f297a66c0069c457ada85de208d4473187d1
This commit is contained in:
Rob Cresswell 2016-06-28 13:10:26 +01:00
parent 70e7788718
commit 9152b6b52b
16 changed files with 6186 additions and 3032 deletions

@ -15,7 +15,7 @@ NAME = __name__.split('.')[-1] # package name (e.g. 'foo' or 'foo_bar')
# please use a all-lowercase valid python
# package name
VERSION = '1.4.57' # version of the packaged files, please use the upstream
VERSION = '1.6.50' # version of the packaged files, please use the upstream
# version number
BUILD = '0' # our package build number, so we can release new builds
# with fixes for xstatic stuff.
@ -35,7 +35,7 @@ MAINTAINER_EMAIL = 'hurgleburgler@gmail.com'
HOMEPAGE = 'http://materialdesignicons.com'
# this refers to all files:
LICENSE = '(same as %s)' % DISPLAY_NAME
LICENSE = 'SIL OFL 1.1'
from os.path import join, dirname
BASE_DIR = join(dirname(__file__), 'data')

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

Before

(image error) Size: 1.5 MiB

After

(image error) Size: 1.7 MiB

File diff suppressed because one or more lines are too long

@ -5,4 +5,24 @@
.#{$mdi-css-prefix}-dark { color: rgba(0, 0, 0, 0.54); }
.#{$mdi-css-prefix}-dark.mdi-inactive { color: rgba(0, 0, 0, 0.26); }
.#{$mdi-css-prefix}-light { color: rgba(255, 255, 255, 1); }
.#{$mdi-css-prefix}-light.mdi-inactive { color: rgba(255, 255, 255, 0.3); }
.#{$mdi-css-prefix}-light.mdi-inactive { color: rgba(255, 255, 255, 0.3); }
$degrees: 45 90 135 180 225 270 315;
@each $degree in $degrees {
.#{$mdi-css-prefix}-rotate-#{$degree} {
-webkit-transform: rotate(#{$degree}deg);
-ms-transform: rotate(#{$degree}deg);
transform: rotate(#{$degree}deg);
}
}
.#{$mdi-css-prefix}-flip-horizontal {
-webkit-transform: scaleX(-1);
transform: scaleX(-1);
filter: FlipH;
-ms-filter: "FlipH";
}
.#{$mdi-css-prefix}-flip-vertical {
-webkit-transform: scaleY(-1);
transform: scaleY(-1);
filter: FlipV;
-ms-filter: "FlipV";
}

@ -0,0 +1,16 @@
@function char($character-code) {
@if function-exists("selector-append") {
@return unquote("\"\\#{$character-code}\"");
}
@if "\\#{'x'}" == "\\x" {
@return str-slice("\x", 1, 1) + $character-code;
}
@else {
@return #{"\"\\"}#{$character-code + "\""};
}
}
@function mdi($name) {
@return char(map-get($mdi-icons, $name));
}

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

@ -1,5 +1,6 @@
/* MaterialDesignIcons.com */
@import "variables";
@import "functions";
@import "path";
@import "core";
@import "icons";