This commit is contained in:
shim
2023-04-17 11:06:08 +09:00
parent d0b393aa97
commit 76264e09ad
4686 changed files with 552713 additions and 0 deletions

266
modules/site/admin/main.css Normal file
View File

@@ -0,0 +1,266 @@
@charset "utf-8";
.well {
min-height: 20px;
margin-bottom: 20px;
background-color: rgb(245, 245, 245);
box-shadow: rgba(0, 0, 0, 0.05) 0 1px 1px inset;
padding: 19px;
border-width: 1px;
border-style: solid;
border-color: rgb(227, 227, 227);
border-image: initial;
border-radius: 4px;
}
#rb-body .page-header {
margin: 30px 0 20px;
}
#rb-body .page-header:first-child {
margin-top: 20px;
}
/**
* Nestable
*/
.dd-list {
position: relative;
margin: 0;
padding: 0;
list-style: none;
}
.dd-item {
position: relative;
margin: 6px;
padding: 0;
min-height: 20px;
font-size: 13px;
line-height: 20px;
height: 70px
}
.dd-placeholder,
.dd-empty {
background: #f2fbff;
border: 1px dashed #b6bcbf;
box-sizing: border-box;
-moz-box-sizing: border-box;
}
.dd-placeholder {}
.dd-dragel {
position: absolute;
pointer-events: none;
z-index: 9999;
}
.dd-dragel>.dd-item .dd-handle {
margin-top: 0;
}
.dd-dragel .dd-handle {
-webkit-box-shadow: 2px 4px 6px 0 rgba(0, 0, 0, .1);
box-shadow: 2px 4px 6px 0 rgba(0, 0, 0, .1);
}
.dd.well {
padding-bottom: 5px;
background-color: #f5f5f5;
position: relative;
min-height: 110px;
max-height: 200px;
overflow: auto;
}
.dd.well .rb-help {
color: #999;
}
.dd.well .rb-help:hover {
color: #777;
}
.dd-list.list-inline {
display: inline;
}
.dd-list.list-inline>li {
display: inline-block;
padding-right: 0;
padding-left: 0;
}
.dd-item {
width: 75px;
height: 69px;
}
.dd-list .dd-item {
position: relative;
color: #333;
text-decoration: none;
border: 1px solid #D5D5D5;
box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.05);
background: #ffffff;
background: -moz-linear-gradient(top, #ffffff 0%, #f5f5f5 100%);
background: -webkit-linear-gradient(top, #ffffff 0%, #f5f5f5 100%);
background: -o-linear-gradient(top, #ffffff 0%, #f5f5f5 100%);
background: -ms-linear-gradient(top, #ffffff 0%, #f5f5f5 100%);
background: linear-gradient(to bottom, #ffffff 0%, #f5f5f5 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f5f5f5', GradientType=0);
-webkit-border-radius: 3px;
border-radius: 3px;
box-sizing: border-box;
-moz-box-sizing: border-box;
}
.dd-list .dd-item.rb-active {
background-color: #007bff;
background-image: none;
border-color: #3278b3;
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}
.dd-list .dd-item.rb-active a {
color: #fff;
}
.dd-placeholder {
display: block;
position: relative;
top: -16px;
left: 11px;
width: 73px;
margin-right: 12px;
background: transparent;
}
.dd-handle {
cursor: move;
height: 67px;
z-index: 9999999;
background-color: transparent;
}
.dd-item a {
display: block;
position: absolute;
top: 0;
left: 0;
width: 100%;
color: #777;
background-color: transparent;
}
.dd-list .rb-site-icon {
display: block;
position: absolute;
top: 5px;
left: 20px;
line-height: 42px;
font-size: 30px;
text-align: center;
}
.dd-list .rb-site-label {
font-weight: normal;
position: absolute;
display: block;
top: 45px;
font-size: 13px;
text-align: center;
text-overflow: ellipsis;
-o-text-overflow: ellipsis;
-ms-text-overflow: ellipsis;
/*white-space: nowrap;/**/
overflow: hidden;
width: 73px;
height: 15px;
}
.rb-add {
display: block;
margin: 20px;
padding: 10px;
background-color: transparent;
border-radius: 4px;
box-sizing: border-box;
-moz-box-sizing: border-box;
text-align: center;
color: #ccc;
border: 1px dashed #D5D5D5;
}
.rb-add.active {
border: 1px solid #007bff;
background-color: #007bff;
color: #ffffff;
}
.rb-add i {
display: inline-block;
}
.dd-list a:hover,
.dd-list .rb-add a:hover {
color: #2ea8e5;
text-decoration: none;
}
.dd-persistent {
pointer-events: none;
}
.form-horizontal .has-feedback.rb-outside .form-control-feedback {
left: -925px;
}
.input-group-btn:last-child>.btn,
.input-group-addon:last-child {
border-top-right-radius: 2px;
border-bottom-right-radius: 2px;
}
#site-advance .form-group {
margin-bottom: 25px;
}
.rb-guide dt {
margin-bottom: 5px
}
/*고급설정 표시*/
.rb-advance .btn .rb-ca1:before {
content: "▲"
}
.rb-advance .btn.collapsed .rb-ca1:before {
content: "▼"
}
.rb-advance .btn .rb-ca2:before {
content: "▼"
}
.rb-advance .btn.collapsed .rb-ca2:before {
content: "▲"
}
.form-group .panel-heading a {
text-decoration: none;
display: block;
}
@media(min-width: 1200px) {
.form-horizontal .has-feedback.rb-outside .form-control-feedback {
width: 46px;
height: 46px;
line-height: 46px;
right: -25px;
left: auto
}
}