-
Notifications
You must be signed in to change notification settings - Fork 14.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix img loading overlay in explore view
- Loading branch information
1 parent
c0fb9ee
commit d29446b
Showing
5 changed files
with
59 additions
and
47 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
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 |
---|---|---|
@@ -0,0 +1,47 @@ | ||
.dashboard a i { | ||
cursor: pointer; | ||
} | ||
.dashboard i.drag { | ||
cursor: move !important; | ||
} | ||
.dashboard .gridster .preview-holder { | ||
z-index: 1; | ||
position: absolute; | ||
background-color: #AAA; | ||
border-color: #AAA; | ||
opacity: 0.3; | ||
} | ||
.gridster li.widget{ | ||
list-style-type: none; | ||
border-radius: 0; | ||
margin: 5px; | ||
border: 1px solid #ccc; | ||
box-shadow: 2px 1px 5px -2px #aaa; | ||
background-color: #fff; | ||
} | ||
.dashboard .gridster .dragging, | ||
.dashboard .gridster .resizing { | ||
opacity: 0.5; | ||
} | ||
.dashboard img.loading { | ||
width: 20px; | ||
margin: 5px; | ||
position: absolute; | ||
} | ||
.dashboard .title { | ||
text-align: center; | ||
} | ||
.dashboard .slice_title { | ||
text-align: center; | ||
font-weight: bold; | ||
font-size: 14px; | ||
padding: 5px; | ||
} | ||
.dashboard div.slice_content { | ||
width: 100%; | ||
height: 100%; | ||
} | ||
|
||
.dashboard div.nvtooltip { | ||
z-index: 888; /* this lets tool tips go on top of other slices */ | ||
} |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
.widget { | ||
position: relative; | ||
} | ||
|
||
.slice_container { | ||
position: absolute; | ||
left: 0; | ||
top: 0; | ||
} |