##// END OF EJS Templates
processes: better handling of PID that are not part of RhodeCode processes....
processes: better handling of PID that are not part of RhodeCode processes. - in some cases for multiple gunicorn instances the PID sent is not from rhodecode which would lead to AccessDenied errors. We prevent from crashing the server on this type of errors.

File last commit:

r1766:d8048d6f default
r2661:042cb4c7 default
Show More
panels.less
88 lines | 1.6 KiB | text/x-less | LessCssLexer
project: added all source files and assets
r1 // See panels-bootstrap.less
// These provide overrides for custom styling of Bootstrap panels
.panel {
&:extend(.clearfix);
width: 100%;
margin: 0 0 25px 0;
.border-radius(@border-radius);
.box-shadow(none);
.permalink {
visibility: hidden;
}
&:hover .permalink {
visibility: visible;
color: @rcblue;
}
.panel-heading {
position: relative;
min-height: 1em;
padding: @padding @panel-padding;
border-bottom: none;
.panel-title,
h3.panel-title {
float: left;
padding: 0 @padding 0 0;
line-height: 1;
font-size: @panel-title;
color: @grey1;
}
.panel-edit {
float: right;
line-height: 1;
font-size: @panel-title;
}
}
.panel-body {
padding: @panel-padding;
pull-requests: moved the listing of pull requests for repo into pyramid....
r1766
&.panel-body-min-height {
min-height: 150px
}
project: added all source files and assets
r1 }
.panel-footer {
background-color: white;
padding: .65em @panel-padding .5em;
font-size: @panel-footer;
color: @text-muted;
}
.q_filter_box {
min-width: 40%;
}
// special cases
&.user-profile {
float: left;
.panel-heading {
margin-bottom: @padding;
}
.panel-body {
&:extend(.clearfix);
}
}
}
.main-content h3.panel-title {
font-size: @panel-title;
color: @grey1;
}
.panel-body-title-text {
margin: 0 0 20px 0;
}
// play nice with the current form and field css
.field.panel-default,
.form.panel-default {
width: auto;
}