mirror of
https://github.com/Karaka-Management/cssOMS.git
synced 2026-02-13 08:18:40 +00:00
Structure improvement
This commit is contained in:
parent
fc98c281cf
commit
f3f3da6d1a
0
_vars.scss
Normal file
0
_vars.scss
Normal file
|
|
@ -1,4 +1,4 @@
|
||||||
@import "mixin", "color";
|
@import "_mixin", "color";
|
||||||
|
|
||||||
.ac-container{
|
.ac-container{
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import "mixin", "color";
|
@import "_mixin", "color";
|
||||||
|
|
||||||
blockquote {
|
blockquote {
|
||||||
border: 1px solid $content-borderlight-color;
|
border: 1px solid $content-borderlight-color;
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import "mixin", "color";
|
@import "_mixin", "color";
|
||||||
|
|
||||||
.crumbs-1 {
|
.crumbs-1 {
|
||||||
list-style: none;
|
list-style: none;
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import "mixin", "color";
|
@import "_mixin", "color";
|
||||||
|
|
||||||
.btn {
|
.btn {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import "mixin", "color";
|
@import "_mixin", "color";
|
||||||
|
|
||||||
canvas {
|
canvas {
|
||||||
background: #fff;
|
background: #fff;
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import "mixin", "color";
|
@import "_mixin", "color";
|
||||||
|
|
||||||
body {
|
body {
|
||||||
background: $background-color;
|
background: $background-color;
|
||||||
|
|
|
||||||
3
draggable.scss
Normal file
3
draggable.scss
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
*[draggable] {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import "mixin", "color";
|
@import "_mixin", "color";
|
||||||
|
|
||||||
form li {
|
form li {
|
||||||
margin: 5px 0 5px 0;
|
margin: 5px 0 5px 0;
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import "mixin", "color";
|
@import "_mixin", "color";
|
||||||
|
|
||||||
img.frame-1 {
|
img.frame-1 {
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import "mixin", "color";
|
@import "_mixin", "color";
|
||||||
|
|
||||||
input, select, textarea, .textarea {
|
input, select, textarea, .textarea {
|
||||||
border: 1px solid $content-border-color;
|
border: 1px solid $content-border-color;
|
||||||
|
|
|
||||||
29
list.scss
29
list.scss
|
|
@ -1,4 +1,4 @@
|
||||||
@import "mixin", "color";
|
@import "_mixin", "color";
|
||||||
|
|
||||||
ul.default li {
|
ul.default li {
|
||||||
margin: 5px 0 5px 0;
|
margin: 5px 0 5px 0;
|
||||||
|
|
@ -36,3 +36,30 @@ ul.h-list li {
|
||||||
|
|
||||||
margin: 5px 10px 5px 10px;
|
margin: 5px 10px 5px 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.bullet-list {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
border-spacing: 0;
|
||||||
|
border-collapse: collapse;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bullet-list td:first-child {
|
||||||
|
padding-right: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bullet-list span {
|
||||||
|
margin-right: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bullet {
|
||||||
|
width: 7px;
|
||||||
|
height: 7px;
|
||||||
|
border-radius: 30px;
|
||||||
|
background: #ccc;
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bullet.active {
|
||||||
|
background: #000;
|
||||||
|
}
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import "mixin", "color";
|
@import "_mixin", "color";
|
||||||
|
|
||||||
main {
|
main {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
|
|
||||||
105
mixin.scss
105
mixin.scss
|
|
@ -1,105 +0,0 @@
|
||||||
@mixin box-sizing($box-model) {
|
|
||||||
-moz-box-sizing: $box-model;
|
|
||||||
-webkit-box-sizing: $box-model;
|
|
||||||
box-sizing: $box-model;
|
|
||||||
}
|
|
||||||
|
|
||||||
@mixin border-radius($radius) {
|
|
||||||
-webkit-border-radius: $radius;
|
|
||||||
-moz-border-radius: $radius;
|
|
||||||
-ms-border-radius: $radius;
|
|
||||||
border-radius: $radius;
|
|
||||||
background-clip: padding-box;
|
|
||||||
}
|
|
||||||
|
|
||||||
@mixin border-top-radius($radius) {
|
|
||||||
-webkit-border-top-right-radius: $radius;
|
|
||||||
border-top-right-radius: $radius;
|
|
||||||
-webkit-border-top-left-radius: $radius;
|
|
||||||
border-top-left-radius: $radius;
|
|
||||||
background-clip: padding-box;
|
|
||||||
}
|
|
||||||
|
|
||||||
@mixin border-right-radius($radius) {
|
|
||||||
-webkit-border-bottom-right-radius: $radius;
|
|
||||||
border-bottom-right-radius: $radius;
|
|
||||||
-webkit-border-top-right-radius: $radius;
|
|
||||||
border-top-right-radius: $radius;
|
|
||||||
background-clip: padding-box;
|
|
||||||
}
|
|
||||||
|
|
||||||
@mixin border-bottom-radius($radius) {
|
|
||||||
-webkit-border-bottom-right-radius: $radius;
|
|
||||||
border-bottom-right-radius: $radius;
|
|
||||||
-webkit-border-bottom-left-radius: $radius;
|
|
||||||
border-bottom-left-radius: $radius;
|
|
||||||
background-clip: padding-box;
|
|
||||||
}
|
|
||||||
|
|
||||||
@mixin border-left-radius($radius) {
|
|
||||||
-webkit-border-bottom-left-radius: $radius;
|
|
||||||
border-bottom-left-radius: $radius;
|
|
||||||
-webkit-border-top-left-radius: $radius;
|
|
||||||
border-top-left-radius: $radius;
|
|
||||||
background-clip: padding-box;
|
|
||||||
}
|
|
||||||
|
|
||||||
@mixin border-bottomleft-radius($radius) {
|
|
||||||
-webkit-border-bottom-left-radius: $radius;
|
|
||||||
border-bottom-left-radius: $radius;
|
|
||||||
background-clip: padding-box;
|
|
||||||
}
|
|
||||||
|
|
||||||
@mixin border-bottomright-radius($radius) {
|
|
||||||
-webkit-border-bottom-right-radius: $radius;
|
|
||||||
border-bottom-right-radius: $radius;
|
|
||||||
background-clip: padding-box;
|
|
||||||
}
|
|
||||||
|
|
||||||
@mixin border-topright-radius($radius) {
|
|
||||||
-webkit-border-top-right-radius: $radius;
|
|
||||||
border-top-right-radius: $radius;
|
|
||||||
background-clip: padding-box;
|
|
||||||
}
|
|
||||||
|
|
||||||
@mixin gradient-top-bottom($start, $pos, $end, $pos2, $bg) {
|
|
||||||
background: $bg;
|
|
||||||
background: -moz-linear-gradient(top, $start $pos, $end $pos2);
|
|
||||||
background: -webkit-gradient(linear, left top, left bottom, color-stop($pos, $start), color-stop($pos2, $end));
|
|
||||||
background: -webkit-linear-gradient(top, $start $pos, $end $pos2);
|
|
||||||
background: -o-linear-gradient(top, $start $pos, $end $pos2);
|
|
||||||
background: -ms-linear-gradient(top, $start $pos, $end $pos2);
|
|
||||||
background: linear-gradient(to bottom, $start $pos, $end $pos2);
|
|
||||||
}
|
|
||||||
|
|
||||||
@mixin box-shadow-top($color) {
|
|
||||||
-moz-box-shadow: inset 0px 1px 0px 0px $color;
|
|
||||||
-webkit-box-shadow: inset 0px 1px 0px 0px $color;
|
|
||||||
box-shadow: inset 0px 1px 0px 0px $color;
|
|
||||||
}
|
|
||||||
|
|
||||||
@mixin box-shadow-left($color) {
|
|
||||||
-moz-box-shadow: inset 1px 0px 0px 0px $color;
|
|
||||||
-webkit-box-shadow: inset 1px 0px 0px 0px $color;
|
|
||||||
box-shadow: inset 1px 0px 0px 0px $color;
|
|
||||||
}
|
|
||||||
|
|
||||||
@mixin box-shadow-bottom($color) {
|
|
||||||
-moz-box-shadow: 0px 1px 0px 0px $color;
|
|
||||||
-webkit-box-shadow: 0px 1px 0px 0px $color;
|
|
||||||
box-shadow: 0px 1px 0px 0px $color;
|
|
||||||
}
|
|
||||||
|
|
||||||
@mixin box-shadow-out($color) {
|
|
||||||
-moz-box-shadow: inset 1px 1px 0px 0px $color;
|
|
||||||
-webkit-box-shadow: inset 1px 1px 0px 0px $color;
|
|
||||||
box-shadow: inset 1px 1px 0px 0px $color;
|
|
||||||
}
|
|
||||||
|
|
||||||
@mixin transform-rotate($deg) {
|
|
||||||
-webkit-transform: rotate($deg);
|
|
||||||
-moz-transform: rotate($deg);
|
|
||||||
-o-transform: rotate($deg);
|
|
||||||
-ms-transform: rotate($deg);
|
|
||||||
transform: rotate($deg);
|
|
||||||
}
|
|
||||||
2
nav.scss
2
nav.scss
|
|
@ -1,4 +1,4 @@
|
||||||
@import "mixin", "color";
|
@import "_mixin", "color";
|
||||||
|
|
||||||
#nav-side {
|
#nav-side {
|
||||||
width: 175px;
|
width: 175px;
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import "mixin", "color";
|
@import "_mixin", "color";
|
||||||
|
|
||||||
.pagination {
|
.pagination {
|
||||||
li {
|
li {
|
||||||
|
|
|
||||||
116
progress.scss
116
progress.scss
|
|
@ -1,4 +1,4 @@
|
||||||
@import "mixin", "color";
|
@import "_mixin", "color";
|
||||||
|
|
||||||
.meter {
|
.meter {
|
||||||
height: 20px; /* Can be anything */
|
height: 20px; /* Can be anything */
|
||||||
|
|
@ -88,3 +88,117 @@
|
||||||
-webkit-animation: none;
|
-webkit-animation: none;
|
||||||
background-image: none;
|
background-image: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.timeline {
|
||||||
|
list-style: none;
|
||||||
|
margin: 0 0 30px 120px;
|
||||||
|
padding-left: 30px;
|
||||||
|
border-left: 3px solid #eaeaea;
|
||||||
|
}
|
||||||
|
|
||||||
|
.timeline li {
|
||||||
|
margin: 0;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.timeline p {
|
||||||
|
margin: 0 0 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.timeline-date {
|
||||||
|
margin-top: -18px;
|
||||||
|
top: 50%;
|
||||||
|
left: -150px;
|
||||||
|
font-size: 0.95em;
|
||||||
|
line-height: 20px;
|
||||||
|
position: absolute;
|
||||||
|
padding: 5px 10px 5px 10px;
|
||||||
|
border: 1px solid #ccc;
|
||||||
|
}
|
||||||
|
|
||||||
|
.timeline-circle {
|
||||||
|
margin-top: -10px;
|
||||||
|
top: 50%;
|
||||||
|
left: -40px;
|
||||||
|
width: 10px;
|
||||||
|
height: 10px;
|
||||||
|
background: tomato;
|
||||||
|
border: 3px solid #eaeaea;
|
||||||
|
border-radius: 50%;
|
||||||
|
display: block;
|
||||||
|
position: absolute;
|
||||||
|
}
|
||||||
|
|
||||||
|
.timeline-circle-start {
|
||||||
|
margin-top: 0;
|
||||||
|
top: 0;
|
||||||
|
left: -45px;
|
||||||
|
width: 20px;
|
||||||
|
height: 20px;
|
||||||
|
background: #fff;
|
||||||
|
border: 3px solid #eaeaea;
|
||||||
|
border-radius: 50%;
|
||||||
|
display: block;
|
||||||
|
position: absolute;
|
||||||
|
}
|
||||||
|
|
||||||
|
.timeline-circle-end {
|
||||||
|
margin-top: 0;
|
||||||
|
top: 100%;
|
||||||
|
left: -45px;
|
||||||
|
width: 20px;
|
||||||
|
height: 20px;
|
||||||
|
background: #fff;
|
||||||
|
border: 3px solid #eaeaea;
|
||||||
|
border-radius: 50%;
|
||||||
|
display: block;
|
||||||
|
position: absolute;
|
||||||
|
}
|
||||||
|
|
||||||
|
.timeline-content {
|
||||||
|
padding: 50px 20px 0;
|
||||||
|
border-radius: 0.5em;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.timeline-content p {
|
||||||
|
text-align: justify;
|
||||||
|
}
|
||||||
|
|
||||||
|
.timeline label {
|
||||||
|
font-size: 1.3em;
|
||||||
|
position: absolute;
|
||||||
|
z-index: 100;
|
||||||
|
top: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.timeline-radio {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.timeline-break {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.progress-radial {
|
||||||
|
float: left;
|
||||||
|
margin-right: 20px;
|
||||||
|
position: relative;
|
||||||
|
width: 70px;
|
||||||
|
height: 70px;
|
||||||
|
border-radius: 50%;
|
||||||
|
background-color: tomato;
|
||||||
|
}
|
||||||
|
|
||||||
|
.progress-radial .overlay {
|
||||||
|
position: absolute;
|
||||||
|
width: 60px;
|
||||||
|
height: 60px;
|
||||||
|
background-color: #fff;
|
||||||
|
border-radius: 50%;
|
||||||
|
margin-left: 5px;
|
||||||
|
margin-top: 5px;
|
||||||
|
text-align: center;
|
||||||
|
line-height: 60px;
|
||||||
|
font-size: 9px;
|
||||||
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import "mixin", "color";
|
@import "_mixin", "color";
|
||||||
|
|
||||||
.box {
|
.box {
|
||||||
@include box-sizing(border-box);
|
@include box-sizing(border-box);
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,3 @@
|
||||||
@import "clean", "mixin", "default", "color", "size", "transformation", "alignment", "visibility", "animate";
|
@import "_vars", "clean", "_mixin", "default", "color", "size", "transformation", "alignment", "visibility", "animate";
|
||||||
@import "layout", "text", "tooltip", "spinner", "canvas", "form", "icon", "image", "input", "accordion", "alert", "badge", "blockquote", "breadcrumb", "button", "link", "list", "nav", "main", "note", "pagination", "popup", "progress", "section", "tab", "table", "tag";
|
@import "layout", "draggable", "text", "tooltip", "spinner", "canvas", "form", "icon", "image", "input", "accordion", "alert", "badge", "blockquote", "breadcrumb", "button", "link", "list", "nav", "main", "note", "pagination", "popup", "progress", "section", "tab", "table", "tag";
|
||||||
@import "media";
|
@import "media";
|
||||||
|
|
|
||||||
2
tab.scss
2
tab.scss
|
|
@ -1,4 +1,4 @@
|
||||||
@import "mixin", "color";
|
@import "_mixin", "color";
|
||||||
|
|
||||||
.tabular {
|
.tabular {
|
||||||
@include box-sizing(border-box);
|
@include box-sizing(border-box);
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import "mixin", "color";
|
@import "_mixin", "color";
|
||||||
|
|
||||||
table.table {
|
table.table {
|
||||||
@include box-sizing(border-box);
|
@include box-sizing(border-box);
|
||||||
|
|
|
||||||
2
tag.scss
2
tag.scss
|
|
@ -1,4 +1,4 @@
|
||||||
@import "mixin", "color";
|
@import "_mixin", "color";
|
||||||
|
|
||||||
.tag {
|
.tag {
|
||||||
text-shadow: 1px 1px 1px #ffffff;
|
text-shadow: 1px 1px 1px #ffffff;
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@import "mixin", "color";
|
@import "_mixin", "color";
|
||||||
|
|
||||||
.tooltip {
|
.tooltip {
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user