-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #244 from CleanTalk/spbc_widget.ag
Security dashboard widget
- Loading branch information
Showing
13 changed files
with
865 additions
and
23 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,112 @@ | ||
#spbc_widget_wrapper { | ||
position: relative; | ||
width: 100%; | ||
height: 100%; | ||
} | ||
.spbc_widget_top_links { | ||
text-align: right; | ||
padding: 0 12px; | ||
height: 32px; | ||
} | ||
.spbc_widget_settings_link{margin: 0 0 0 10px;} | ||
.spbc_widget_refresh_link{} | ||
|
||
.spbc_preloader{ | ||
display: none; | ||
float: left; | ||
width: 20px; height: 20px; | ||
margin: 0 10px; | ||
} | ||
|
||
.spbc_widget_hr{ | ||
width: 100%; | ||
} | ||
|
||
.spbc_widget_block_header{ | ||
font-size: 18px !important; | ||
margin-left: 12px !important; | ||
} | ||
|
||
.spbc_widget_block{ | ||
display: block; position: relative; | ||
padding: 12px; | ||
} | ||
.spbc_widget_chart_wrapper{ | ||
margin-right: 10px; | ||
height: 300px; | ||
} | ||
|
||
.spbc_widget_block table{ | ||
width: 100%; | ||
text-align: left; | ||
} | ||
.spbc_widget_block table tr{margin-bottom: 10px;} | ||
.spbc_widget_block table th{ | ||
text-align: left; | ||
padding: 10px 0 5px 10px;; | ||
border-bottom: 2px solid gray; | ||
|
||
} | ||
.spbc_widget_block table td{ | ||
text-align: left; | ||
padding: 10px 0 5px 10px;; | ||
border-bottom: 1px solid gray; | ||
} | ||
#spbc_widget_wrapper .spbc_widget_block table td.spbc_widget_block__country_cell img { | ||
width: 16px !important; | ||
height: auto; | ||
} | ||
|
||
.spbc_widget_button{ | ||
display: block; | ||
margin: 10px auto; | ||
} | ||
.spbc_widget_activate_button{ | ||
display: block; | ||
margin: 10px auto; padding: 7px 15px; | ||
font-weight: 600; | ||
border-radius: 3px; | ||
border: 2px solid #aaa; | ||
background: rgba(250,50,50,0.9); | ||
} | ||
.spbc_widget_resolve_button{ | ||
background: rgba(50,250,50,0.9); | ||
} | ||
.spbc_widget_activate_header{ | ||
display: inline-block; | ||
width: 100%; | ||
text-align: center; | ||
font-size: 18px !important; | ||
} | ||
.spbc_widget_wprapper_total_blocked{ | ||
padding: 10px 0 10px 10px; | ||
background: #f1f1f1; | ||
} | ||
.spbc_widget_wprapper_total_blocked span{ | ||
position: relative; | ||
top: 2px; | ||
} | ||
.spbc_widget_small_logo{ | ||
margin-right: 1em; | ||
vertical-align: middle; | ||
} | ||
#spbc_widget_wrapper .spbc_widget_wprapper_total_blocked img.spbc_widget_small_logo { | ||
width: 24px !important; | ||
height: 24px !important; | ||
} | ||
#spbc_widget_button_view_all{ | ||
cursor: pointer; | ||
border: 1px solid #0074a2; | ||
-webkit-appearance: none; | ||
-webkit-border-radius: 2px; | ||
border-radius: 2px; | ||
white-space: nowrap; | ||
-webkit-box-sizing: border-box; | ||
-moz-box-sizing: border-box; | ||
box-sizing: border-box; | ||
background: #0085ba; | ||
-webkit-box-shadow: inset 0 1px 0 rgba(120,200,230,.5), 0 1px 0 rgba(0,0,0,.15); | ||
box-shadow: inset 0 1px 0 rgba(120,200,230,.5), 0 1px 0 rgba(0,0,0,.15); | ||
color: #fff; | ||
} | ||
#spbc_widget_button_view_all:hover{color: #000 !important;} |
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
Oops, something went wrong.