summaryrefslogtreecommitdiffstats
path: root/src/wwwroot/libraries/fomantic/src/definitions/elements/flag.less
diff options
context:
space:
mode:
Diffstat (limited to 'src/wwwroot/libraries/fomantic/src/definitions/elements/flag.less')
-rw-r--r--src/wwwroot/libraries/fomantic/src/definitions/elements/flag.less52
1 files changed, 52 insertions, 0 deletions
diff --git a/src/wwwroot/libraries/fomantic/src/definitions/elements/flag.less b/src/wwwroot/libraries/fomantic/src/definitions/elements/flag.less
new file mode 100644
index 0000000..b691d18
--- /dev/null
+++ b/src/wwwroot/libraries/fomantic/src/definitions/elements/flag.less
@@ -0,0 +1,52 @@
+/*!
+ * # Fomantic-UI - Flag
+ * http://github.com/fomantic/Fomantic-UI/
+ *
+ *
+ * Released under the MIT license
+ * http://opensource.org/licenses/MIT
+ *
+ */
+
+
+/*******************************
+ Theme
+*******************************/
+
+@type : 'element';
+@element : 'flag';
+
+@import (multiple) '../../theme.config';
+
+
+/*******************************
+ Flag
+*******************************/
+
+i.flag:not(.icon) {
+ display: inline-block;
+
+ width: @width;
+ height: @height;
+
+ line-height: @height;
+ vertical-align: @verticalAlign;
+ margin: 0 @margin 0 0;
+
+ text-decoration: inherit;
+
+ speak: none;
+ -webkit-font-smoothing: antialiased;
+ backface-visibility: hidden;
+}
+
+/* Sprite */
+i.flag:not(.icon):before {
+ display: inline-block;
+ content: '';
+ background: url(@spritePath) no-repeat -108px -1976px;
+ width: @width;
+ height: @height;
+}
+
+.loadUIOverrides();