diff options
| author | Fuwn <[email protected]> | 2020-12-14 23:29:56 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2020-12-14 23:29:56 -0800 |
| commit | 002eb44eee98dc838bc854b945ab0cbf4884dd57 (patch) | |
| tree | 428ae460c79baf32fba8ecf16e6fe02a88c3b971 /semantic/src/definitions/modules/nag.less | |
| parent | :star: (diff) | |
| download | me-rewrite-angular.tar.xz me-rewrite-angular.zip | |
:star:rewrite-angular
Diffstat (limited to 'semantic/src/definitions/modules/nag.less')
| -rw-r--r-- | semantic/src/definitions/modules/nag.less | 158 |
1 files changed, 0 insertions, 158 deletions
diff --git a/semantic/src/definitions/modules/nag.less b/semantic/src/definitions/modules/nag.less deleted file mode 100644 index 386e7fe..0000000 --- a/semantic/src/definitions/modules/nag.less +++ /dev/null @@ -1,158 +0,0 @@ -/*! - * # Fomantic-UI - Nag - * http://github.com/fomantic/Fomantic-UI/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - - -/******************************* - Theme -*******************************/ - -@type : 'module'; -@element : 'nag'; - -@import (multiple) '../../theme.config'; - -/******************************* - Nag -*******************************/ - -.ui.nag { - display: none; - opacity: @opacity; - position: @position; - - top: @top; - left: 0; - z-index: @zIndex; - - min-height: @minHeight; - width: @width; - - margin: @margin; - padding: @padding; - - background: @background; - box-shadow: @boxShadow; - - font-size: @fontSize; - text-align: @textAlign; - color: @color; - - border-radius: @topBorderRadius; - transition: @transition; -} - -a.ui.nag { - cursor: pointer; -} - -.ui.nag > .title { - display: inline-block; - margin: @titleMargin; - color: @titleColor; -} - - -.ui.nag > .close.icon { - cursor: pointer; - opacity: @closeOpacity; - - position: absolute; - top: @closeTop; - right: @closeRight; - - font-size: @closeSize; - - margin: @closeMargin; - color: @closeColor; - transition: @closeTransition; -} - - - -/******************************* - States -*******************************/ - -/* Hover */ -.ui.nag:hover { - background: @nagHoverBackground; - opacity: @nagHoverOpacity; -} - -.ui.nag .close:hover { - opacity: @closeHoverOpacity; -} - - -/******************************* - Variations -*******************************/ - - -/*-------------- - Static ----------------*/ - -.ui.overlay.nag { - position: absolute; - display: block; -} - -/*-------------- - Fixed ----------------*/ - -.ui.fixed.nag { - position: fixed; -} - -/*-------------- - Bottom ----------------*/ - -.ui.bottom.nags, -.ui.bottom.nag { - border-radius: @bottomBorderRadius; - top: auto; - bottom: @bottom; -} - -/*-------------- - White ----------------*/ - -.ui.inverted.nags .nag, -.ui.inverted.nag { - background-color: @invertedBackground; - color: @darkTextColor; -} -.ui.inverted.nags .nag .close, -.ui.inverted.nags .nag .title, -.ui.inverted.nag .close, -.ui.inverted.nag .title { - color: @lightTextColor; -} - - -/******************************* - Groups -*******************************/ - -.ui.nags .nag { - border-radius: @groupedBorderRadius !important; -} -.ui.nags .nag:last-child { - border-radius: @topBorderRadius; -} -.ui.bottom.nags .nag:last-child { - border-radius: @bottomBorderRadius; -} - -.loadUIOverrides(); |