Merge branch 'master' into discussions
Before Width: | Height: | Size: 177 B |
Before Width: | Height: | Size: 295 B |
Before Width: | Height: | Size: 749 B |
Before Width: | Height: | Size: 302 B |
Before Width: | Height: | Size: 750 B |
Before Width: | Height: | Size: 463 B |
Before Width: | Height: | Size: 632 B |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 463 B |
Before Width: | Height: | Size: 632 B |
Before Width: | Height: | Size: 357 B |
|
@ -1,7 +1,4 @@
|
|||
$ ->
|
||||
dashboardPage()
|
||||
|
||||
dashboardPage = ->
|
||||
window.dashboardPage = ->
|
||||
Pager.init 20, true
|
||||
$(".event_filter_link").bind "click", (event) ->
|
||||
event.preventDefault()
|
||||
|
|
|
@ -32,6 +32,7 @@
|
|||
@import "sections/profile.scss";
|
||||
@import "sections/login.scss";
|
||||
@import "sections/editor.scss";
|
||||
@import "sections/admin.scss";
|
||||
|
||||
@import "highlight/white.scss";
|
||||
@import "highlight/dark.scss";
|
||||
|
|
|
@ -371,6 +371,7 @@ li.note {
|
|||
font-size: 48px;
|
||||
padding: 20px;
|
||||
text-align: center;
|
||||
font-weight: normal;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -445,6 +446,19 @@ li.note {
|
|||
}
|
||||
}
|
||||
|
||||
.warning_message {
|
||||
border-left: 4px solid #ed9;
|
||||
color: #b90;
|
||||
padding: 10px;
|
||||
margin-bottom: 10px;
|
||||
background: #ffffe6;
|
||||
padding-left: 20px;
|
||||
|
||||
&.centered {
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
||||
.oauth_select_holder {
|
||||
padding: 20px;
|
||||
img {
|
||||
|
|
|
@ -37,24 +37,6 @@
|
|||
background: #fff;
|
||||
font-size: 11px;
|
||||
|
||||
&.wiki {
|
||||
font-size: 13px;
|
||||
code {
|
||||
padding: 0 4px;
|
||||
}
|
||||
padding: 20px;
|
||||
|
||||
h1 { font-size: 26px; line-height: 46px; }
|
||||
h2 { font-size: 22px; line-height: 42px; }
|
||||
h3 { font-size: 20px; line-height: 40px; }
|
||||
h4 { font-size: 18px; line-height: 32px; }
|
||||
h5 { font-size: 16px; line-height: 26px; }
|
||||
|
||||
.white .highlight pre {
|
||||
background: #f5f5f5;
|
||||
}
|
||||
}
|
||||
|
||||
&.image_file {
|
||||
background: #eee;
|
||||
text-align: center;
|
||||
|
@ -64,6 +46,11 @@
|
|||
}
|
||||
}
|
||||
|
||||
&.wiki {
|
||||
padding: 20px;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
&.blob_file {
|
||||
|
||||
}
|
||||
|
|
|
@ -81,3 +81,22 @@ a:focus {
|
|||
.monospace {
|
||||
font-family: 'Menlo', 'Liberation Mono', 'Consolas', 'Courier New', 'andale mono','lucida console',monospace;
|
||||
}
|
||||
|
||||
/**
|
||||
* Wiki typography
|
||||
*
|
||||
*/
|
||||
.wiki {
|
||||
font-size: 13px;
|
||||
|
||||
code { padding: 0 4px; }
|
||||
p { font-size: 13px; }
|
||||
h1 { font-size: 32px; line-height: 40px; margin: 10px 0;}
|
||||
h2 { font-size: 26px; line-height: 40px; margin: 10px 0;}
|
||||
h3 { font-size: 22px; line-height: 40px; margin: 10px 0;}
|
||||
h4 { font-size: 18px; line-height: 20px; margin: 10px 0;}
|
||||
h5 { font-size: 14px; line-height: 20px; margin: 10px 0;}
|
||||
h6 { font-size: 12px; line-height: 20px; margin: 10px 0;}
|
||||
.white .highlight pre { background: #f5f5f5; }
|
||||
ul { margin: 0 0 9px 25px !important; }
|
||||
}
|
||||
|
|
5
app/assets/stylesheets/sections/admin.scss
Normal file
|
@ -0,0 +1,5 @@
|
|||
.admin-filter form {
|
||||
label { width: 110px; }
|
||||
.controls { margin-left: 130px; }
|
||||
.form-actions { padding-left: 130px; background: #fff }
|
||||
}
|
|
@ -132,21 +132,25 @@
|
|||
.event_filter {
|
||||
position: absolute;
|
||||
width: 40px;
|
||||
margin-left: -50px;
|
||||
margin-left: -55px;
|
||||
|
||||
.filter_icon {
|
||||
float: left;
|
||||
border-left: 3px solid #4bc;
|
||||
padding: 7px;
|
||||
background: #f9f9f9;
|
||||
margin-bottom: 10px;
|
||||
img {
|
||||
width: 20px;
|
||||
a {
|
||||
text-align:center;
|
||||
border-left: 3px solid #29B;
|
||||
background: #f9f9f9;
|
||||
margin-bottom: 10px;
|
||||
float: left;
|
||||
padding: 9px 7px;
|
||||
font-size: 18px;
|
||||
width: 26px;
|
||||
}
|
||||
|
||||
&.inactive {
|
||||
border-left: 3px solid #EEE;
|
||||
opacity: 0.5;
|
||||
a {
|
||||
color: #DDD;
|
||||
border-left: 3px solid #EEE;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -80,6 +80,18 @@
|
|||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
td.blame-commit {
|
||||
background: #f9f9f9;
|
||||
min-width: 350px;
|
||||
}
|
||||
td.blame-numbers {
|
||||
pre {
|
||||
color: #AAA;
|
||||
white-space: pre;
|
||||
}
|
||||
background: #f1f1f1;
|
||||
border-left: 1px solid #DDD;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|