forked from BlogEngine/BlogEngine.NET
-
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
Farzin Seyfolahi
committed
Mar 16, 2016
1 parent
d37be24
commit ba92cab
Showing
4 changed files
with
151 additions
and
150 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
Large diffs are not rendered by default.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
BlogEngine/BlogEngine.NET/admin/themes/standard/css/styles.css.map
Large diffs are not rendered by default.
Oops, something went wrong.
129 changes: 79 additions & 50 deletions
129
BlogEngine/BlogEngine.NET/admin/themes/standard/sass/pages/custom/_widgets.scss
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,71 +1,100 @@ | ||
.custom-widgets-view { | ||
.red-border { | ||
border: 1px solid red !important; | ||
.modal-body{ | ||
.input-group-btn { | ||
.btn { | ||
height: 40px; | ||
width: 140px; | ||
} | ||
} | ||
|
||
#w-zones .panel-body { | ||
padding: 10px 15px; | ||
line-height: 30px; | ||
iframe{ | ||
height:400px; | ||
min-height:400px; | ||
} | ||
|
||
.panel-primary { | ||
margin-bottom: 5px; | ||
cursor: move; | ||
} | ||
|
||
.modal .modal-body { | ||
height: auto; | ||
} | ||
.content-inner { | ||
.widgets-list { | ||
@include list-unstyled(); | ||
margin-top: 20px; | ||
margin-bottom: 20px; | ||
|
||
#settingsFrame { | ||
height: 100%; | ||
max-height: 500px; | ||
} | ||
li { | ||
width: 100%; | ||
background: #fff; | ||
margin-bottom: 5px; | ||
padding-left: 15px; | ||
line-height: 40px; | ||
border: 1px solid #ddd; | ||
-moz-box-shadow: 0 1px 0 #eee !important; | ||
-webkit-box-shadow: 0 1px 0 #eee !important; | ||
box-shadow: 0 1px 0 #eee !important; | ||
-moz-border-radius: 3px; | ||
-webkit-border-radius: 3px; | ||
border-radius: 3px; | ||
font-weight: 400; | ||
font-size: 14px; | ||
height: 40px; | ||
padding-left: 10px; | ||
color: #444; | ||
position: relative; | ||
overflow: hidden; | ||
|
||
.header-txt { | ||
border: 1px solid #e5e5e5; | ||
line-height: 32px; | ||
margin-top: 10px 10px 0 0; | ||
width: 400px; | ||
padding: 0 10px; | ||
} | ||
&:last-child { | ||
margin-bottom: 0; | ||
} | ||
|
||
.sortable-empty { | ||
border: 3px dashed #b4b9be; | ||
padding: 15px; | ||
} | ||
.item-buttons { | ||
position: absolute; | ||
right: 0; | ||
top: 0; | ||
z-index: 2; | ||
width: 100px; | ||
|
||
.field-validation-error { | ||
background-color: #d9534f; | ||
border-color: #d9534f; | ||
color: #ffffff; | ||
padding: 5px 15px; | ||
display: block; | ||
} | ||
button { | ||
width: 50px; | ||
background-color: #fff; | ||
border: none; | ||
border: none; | ||
display: block; | ||
height: 100%; | ||
line-height: 38px; | ||
text-align: center; | ||
float: left; | ||
text-transform: uppercase; | ||
border-left: 1px solid #eee; | ||
|
||
.content-inner { | ||
max-width: 1024px; | ||
i { | ||
display: block; | ||
height: 100%; | ||
line-height: 36px; | ||
} | ||
|
||
.btn-group { | ||
.btn { | ||
margin: 0 !important; | ||
&:hover { | ||
background-color: #eee; | ||
} | ||
} | ||
} | ||
} | ||
|
||
.btn-default { | ||
border-right: none; | ||
.sortable-empty { | ||
background: none; | ||
@include box-shadow(none !important); | ||
border: none; | ||
@include border-radius(0); | ||
text-align: center; | ||
} | ||
} | ||
|
||
h3 { | ||
margin-bottom: 25px; | ||
} | ||
|
||
.ui-draggable { | ||
width: 100%; | ||
.widgets-list-active { | ||
border: 1px dashed #aaa; | ||
padding: 10px; | ||
} | ||
|
||
.ui-draggable-dragging { | ||
z-index: 10000; | ||
.ui-sortable-placeholder { | ||
visibility: visible !important; | ||
background: none !important; | ||
@include box-shadow(none !important); | ||
border: 1px dashed #aaa !important; | ||
} | ||
} | ||
} |