##// 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:

r1:854a839a default
r731:7a6d3636 default
Show More
alerts.less
58 lines | 1.1 KiB | text/x-less | LessCssLexer
.alert1 { .border ( @border-thickness-tags, @alert1 ); color:@alert1; }
.alert2 { .border ( @border-thickness-tags, @alert2 ); color:@alert2; }
.alert3 { .border ( @border-thickness-tags, @alert3 ); color:@alert3; }
.alert4 { .border ( @border-thickness-tags, @alert4 ); color:@alert4; }
.alert {
clear: both;
margin: @space auto 0 auto;
padding: @padding;
border: @border-thickness solid;
border-radius: @border-radius;
// overwritter css from specific alerts
color: @grey3;
border-color: @alert4;
background-color: @alert4-inner;
a {
text-decoration: underline;
}
.close {
color: @grey3;
}
}
.infoform .alert {
width: 100%;
margin-top: 0;
}
.alert-success {
border-color: @alert1;
background-color: @alert1-inner;
}
.alert-error {
border-color: @alert2;
background-color: @alert2-inner;
}
.alert-warning {
border-color: @alert3;
background-color: @alert3-inner;
}
.alert-dismissable {
padding-right: 10px;
.close {
margin-top: -5px;
}
}
.loginbox {
.alert {
margin: 0 auto 35px auto;
}
}