forked from chhrrr/RAP
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
137 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,93 @@ | ||
.floaterd {padding-top:3px;} | ||
.floaterd-top {background: #3B5C55} | ||
.floaterd-bottom {display:none} | ||
.floater {position:absolute !important;} | ||
.floater-title {border-right:1px solid #CBE9B7;border-left:1px solid #CBE9B7;border-top:1px solid #CBE9B7;cursor:move;position:absolute;left:0;top:0;height:23px;padding:4px 10px 0 18px;background:url(img/global_bg.png) 0 -150px repeat-x;font-size:12px;color:#E2FEC4;font-weight:bold;} | ||
.floater-close {position:absolute;right:5px;top:5px;font-size:1px;border:0px;float:right;display:block;width:19px;height:19px;background:url(img/btn.gif) -83px -49px;cursor:pointer;} | ||
.floater-content {padding:37px 18px 9px;border-right:1px solid #CBE9B7;border-left:1px solid #CBE9B7;border-bottom:1px solid #CBE9B7;background:#F3FBEC} | ||
.floater-inner {overflow-y:auto;overflow-x:hidden} | ||
.floater-corner {background: #fff} | ||
.floaterd { | ||
padding-top: 3px; | ||
} | ||
|
||
.floaterd-top { | ||
background: #3B5C55 | ||
} | ||
|
||
.floaterd-bottom { | ||
display: none | ||
} | ||
|
||
.floater { | ||
position: absolute !important; | ||
border-radius: 6px; | ||
-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5); | ||
box-shadow: 0 5px 15px rgba(0, 0, 0, .5); | ||
background-color: #fff; | ||
background-clip: padding-box; | ||
border: 1px solid rgba(0, 0, 0, .2); | ||
outline: none; | ||
border: none; | ||
} | ||
|
||
.ec-form.floater { | ||
padding-top: 52px; | ||
} | ||
|
||
.floater-title { | ||
cursor: move; | ||
border-radius: 6px 6px 0 0; | ||
position: absolute; | ||
left: 0; | ||
top: 0; | ||
height: 52px; | ||
padding: 4px 10px 0 18px; | ||
font-size: 18px; | ||
color: #333; | ||
min-height: 16.42857143px; | ||
padding: 15px; | ||
border-bottom: 1px solid #e5e5e5; | ||
font-weight: bold; | ||
position: absolute | ||
} | ||
|
||
.floater-close { | ||
position: absolute; | ||
right: 18px; | ||
top: 14px; | ||
font-size: 1px; | ||
font-size: 22px; | ||
font-weight: bold; | ||
line-height: 1; | ||
color: #000; | ||
text-shadow: 0 1px 0 #fff; | ||
opacity: .2; | ||
cursor: pointer; | ||
} | ||
|
||
.floater-close:after { | ||
content: '×'; | ||
} | ||
|
||
.floater-close:hover { | ||
opacity: .4; | ||
} | ||
|
||
.floater-content { | ||
-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5); | ||
box-shadow: 0 5px 15px rgba(0, 0, 0, .5); | ||
background-color: #fff; | ||
background-clip: padding-box; | ||
border-radius: 0 0 6px 6px; | ||
outline: none; | ||
} | ||
|
||
.floater-inner { | ||
overflow-y: auto; | ||
overflow-x: hidden | ||
} | ||
|
||
.floater-corner { | ||
background: #fff | ||
} | ||
|
||
.div-floater-control { | ||
padding: 15px 20px 2px; | ||
margin-top: 20px; | ||
text-align: right; | ||
border-top: 1px solid #e5e5e5; | ||
margin-left: -19px; | ||
margin-right: -19px; | ||
} |