aboutsummaryrefslogtreecommitdiff
path: root/semantic/src/definitions/elements/text.less
diff options
context:
space:
mode:
authorFuwn <[email protected]>2020-12-14 23:29:56 -0800
committerFuwn <[email protected]>2020-12-14 23:29:56 -0800
commit002eb44eee98dc838bc854b945ab0cbf4884dd57 (patch)
tree428ae460c79baf32fba8ecf16e6fe02a88c3b971 /semantic/src/definitions/elements/text.less
parent:star: (diff)
downloadme-rewrite-angular.tar.xz
me-rewrite-angular.zip
Diffstat (limited to 'semantic/src/definitions/elements/text.less')
-rw-r--r--semantic/src/definitions/elements/text.less74
1 files changed, 0 insertions, 74 deletions
diff --git a/semantic/src/definitions/elements/text.less b/semantic/src/definitions/elements/text.less
deleted file mode 100644
index f2256c5..0000000
--- a/semantic/src/definitions/elements/text.less
+++ /dev/null
@@ -1,74 +0,0 @@
-/*!
- * # Fomantic-UI - Text
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * https://github.com/fomantic/Fomantic-UI/blob/master/LICENSE.md
- *
- */
-
-
-/*******************************
- Theme
-*******************************/
-
-@type : 'element';
-@element : 'text';
-
-@import (multiple) '../../theme.config';
-
-
-/*******************************
- Text
-*******************************/
-span.ui.text {
- line-height: @lineHeight;
-}
-
-each(@colors, {
- @color: replace(@key, '@', '');
- @c: @colors[@@color][color];
- @l: @colors[@@color][light];
-
- span.ui.@{color}.text {
- color: @c;
- }
- & when (@variationTextInverted) {
- span.ui.inverted.@{color}.text {
- color: @l;
- }
- }
-})
-
-& when (@variationTextStates) {
- each(@textStates, {
- @state: replace(@key, '@', '');
- @c: @textStates[@@state][color];
-
- span.ui.@{state}.text {
- color: @c;
- }
- })
-}
-
-& when (@variationTextDisabled) {
- span.ui.disabled.text {
- opacity: @disabledOpacity;
- }
-}
-
-/* Sizes */
-span.ui.medium.text {
- font-size: @medium;
-}
-& when not (@variationTextSizes = false) {
- each(@variationTextSizes, {
- @s: @@value;
- span.ui.@{value}.text {
- font-size: @s;
- }
- })
-}
-
-.loadUIOverrides();