Update Semantic
Fixes #40,#24
This commit is contained in:
parent
1715f27f44
commit
2027b94179
621 changed files with 172488 additions and 15939 deletions
98
web/semantic/src/themes/classic/views/card.overrides
Normal file
98
web/semantic/src/themes/classic/views/card.overrides
Normal file
|
@ -0,0 +1,98 @@
|
|||
/*******************************
|
||||
Item
|
||||
*******************************/
|
||||
/*-------------------
|
||||
View
|
||||
--------------------*/
|
||||
|
||||
/* Item */
|
||||
@background: #FFFFFF;
|
||||
@borderRadius: 0.325rem;
|
||||
@display: block;
|
||||
@float: left;
|
||||
@margin: 0em @horizontalSpacing @rowSpacing;
|
||||
@minHeight: 0px;
|
||||
@padding: 0em;
|
||||
@width: 300px;
|
||||
@boxShadow:
|
||||
0px 0px 0px 1px @borderColor,
|
||||
0px 3px 0px 0px @borderColor
|
||||
;
|
||||
@border: none;
|
||||
@zIndex: '';
|
||||
|
||||
/* Item Group */
|
||||
@horizontalSpacing: 0.5em;
|
||||
@rowSpacing: 2.5em;
|
||||
@groupMargin: 1em -@horizontalSpacing;
|
||||
|
||||
/*-------------------
|
||||
Content
|
||||
--------------------*/
|
||||
|
||||
/* Image */
|
||||
@imageBackground: @transparentBlack;
|
||||
@imagePadding: 0em;
|
||||
@imageBorderRadius: @borderRadius @borderRadius 0em 0em;
|
||||
@imageBoxShadow: none;
|
||||
@imageBorder: none;
|
||||
|
||||
/* Content */
|
||||
@contentMargin: 0em;
|
||||
@contentPadding: 0.75em 1em;
|
||||
@contentFontSize: 1em;
|
||||
@contentBorder: none;
|
||||
@contentBorderRadius: 0em;
|
||||
@contentBoxShadow: none;
|
||||
|
||||
/* Title */
|
||||
@titleMargin: 0em;
|
||||
@titleFont: @headerFont;
|
||||
@titleFontWeight: bold;
|
||||
@titleFontSize: 1.25em;
|
||||
@titleColor: @darkTextColor;
|
||||
|
||||
/* Metadata */
|
||||
@metaColor: @lightTextColor;
|
||||
|
||||
/* Description */
|
||||
@descriptionDistance: 0.75em;
|
||||
@descriptionColor: @lightTextColor;
|
||||
|
||||
/* Image */
|
||||
@imageSpacing: 0.25em;
|
||||
@contentImageWidth: 2em;
|
||||
@contentImageVerticalAlign: middle;
|
||||
|
||||
/* Paragraph */
|
||||
@paragraphDistance: 0.1em;
|
||||
|
||||
/* Additional Content */
|
||||
@extraDisplay: absolute;
|
||||
@extraTop: 100%;
|
||||
@extraLeft: 0em;
|
||||
@extraWidth: 100%;
|
||||
|
||||
@extraPadding: 0.5em 0.75em;
|
||||
@extraColor: @lightTextColor;
|
||||
@extraTransition: color @transitionDuration @transitionEasing;
|
||||
|
||||
/*-------------------
|
||||
States
|
||||
--------------------*/
|
||||
|
||||
@hoverCursor: pointer;
|
||||
@hoverZIndex: 5;
|
||||
@hoverBorder: none;
|
||||
@hoverBoxShadow:
|
||||
0px 0px 0px 1px @selectedBorderColor,
|
||||
0px 3px 0px 0px @selectedBorderColor
|
||||
;
|
||||
|
||||
|
||||
/*-------------------
|
||||
Variations
|
||||
--------------------*/
|
||||
|
||||
/* Sizes */
|
||||
@medium: 1em;
|
Reference in a new issue