##// END OF EJS Templates
integrations: refactor/cleanup + features, fixes #4181...
integrations: refactor/cleanup + features, fixes #4181 * added scopes on integrations, scopes are: - repo only - repogroup children only - root repos only - global (any repo) * integrations schemas now have separate section for the settings (eg. slack) and options (eg. scope/enabled) * added descriptions to integration types * added icons to integration types * added 'create new' integration page * added scope of integration to integrations list * added breadcrumbs for each repo/repogroup/global integrations pages * added sorting to integrations list * added pagination to integrations list * added icons to integrations list * added type filter to integrations list * added message to integrations list if none we found * added extra permissions check on integrations views * db migration from 56 => 57 - adds child_repos_only field * added tests for integrations triggered on events * added tests for integrations schemas * added tests for integrations views for repo/repogroup/admin

File last commit:

r300:dbd5f438 default
r731:7a6d3636 default
Show More
panels.less
84 lines | 1.6 KiB | text/x-less | LessCssLexer
// 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;
}
.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;
}