mirror of
https://github.com/gitbucket/gitbucket.git
synced 2025-11-10 07:25:50 +01:00
Content is scrollable
This commit is contained in:
@@ -2,7 +2,8 @@
|
|||||||
@import context._
|
@import context._
|
||||||
@import gitbucket.core.view.helpers._
|
@import gitbucket.core.view.helpers._
|
||||||
@html.main(if(account.isEmpty) "Create group" else "Edit group"){
|
@html.main(if(account.isEmpty) "Create group" else "Edit group"){
|
||||||
<div class="body main-center">
|
<div class="content-wrapper main-center">
|
||||||
|
<div class="content body">
|
||||||
<h2>@{if(account.isEmpty) "Create group" else "Edit group"}</h2>
|
<h2>@{if(account.isEmpty) "Create group" else "Edit group"}</h2>
|
||||||
<form id="form" method="post" action="@if(account.isEmpty){@path/groups/new} else {@path/@account.get.userName/_editgroup}" validate="true">
|
<form id="form" method="post" action="@if(account.isEmpty){@path/groups/new} else {@path/@account.get.userName/_editgroup}" validate="true">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
@@ -52,6 +53,7 @@
|
|||||||
}
|
}
|
||||||
</fieldset>
|
</fieldset>
|
||||||
</form>
|
</form>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
<script>
|
<script>
|
||||||
|
|||||||
@@ -3,7 +3,8 @@ isCreateRepoOptionPublic: Boolean)(implicit context: gitbucket.core.controller.C
|
|||||||
@import context._
|
@import context._
|
||||||
@import gitbucket.core.view.helpers._
|
@import gitbucket.core.view.helpers._
|
||||||
@html.main("Create a New Repository"){
|
@html.main("Create a New Repository"){
|
||||||
<div class="body main-center">
|
<div class="content-wrapper main-center">
|
||||||
|
<div class="content body">
|
||||||
<h2>Create a new repository</h2>
|
<h2>Create a new repository</h2>
|
||||||
<p class="muted">
|
<p class="muted">
|
||||||
A repository contains all the files for your project, including the revision history.
|
A repository contains all the files for your project, including the revision history.
|
||||||
@@ -70,6 +71,7 @@ isCreateRepoOptionPublic: Boolean)(implicit context: gitbucket.core.controller.C
|
|||||||
<input type="submit" class="btn btn-success" value="Create repository"/>
|
<input type="submit" class="btn btn-success" value="Create repository"/>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
</form>
|
</form>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
<script>
|
<script>
|
||||||
|
|||||||
@@ -2,7 +2,8 @@
|
|||||||
@import context._
|
@import context._
|
||||||
@import gitbucket.core.view.helpers._
|
@import gitbucket.core.view.helpers._
|
||||||
@html.main("Create your account"){
|
@html.main("Create your account"){
|
||||||
<div class="container body main-center">
|
<div class="content-wrapper main-center">
|
||||||
|
<div class="content body">
|
||||||
<h2>Create your account</h2>
|
<h2>Create your account</h2>
|
||||||
<form action="@path/register" method="POST" validate="true">
|
<form action="@path/register" method="POST" validate="true">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
@@ -46,5 +47,6 @@
|
|||||||
<input type="submit" class="btn btn-success" value="Create account"/>
|
<input type="submit" class="btn btn-success" value="Create account"/>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
</form>
|
</form>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -52,7 +52,7 @@
|
|||||||
</script>
|
</script>
|
||||||
<script src="@assets/vendors/AdminLTE-2.2.3/js/app.js" type="text/javascript"></script>
|
<script src="@assets/vendors/AdminLTE-2.2.3/js/app.js" type="text/javascript"></script>
|
||||||
</head>
|
</head>
|
||||||
<body class="skin-blue">
|
<body class="skin-blue fixed">
|
||||||
<header class="main-header">
|
<header class="main-header">
|
||||||
<a href="@path/" class="logo">
|
<a href="@path/" class="logo">
|
||||||
<img src="@assets/common/images/gitbucket.png" style="width: 24px; height: 24px; display: inline;"/>
|
<img src="@assets/common/images/gitbucket.png" style="width: 24px; height: 24px; display: inline;"/>
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
@()(implicit context: gitbucket.core.controller.Context)
|
@()(implicit context: gitbucket.core.controller.Context)
|
||||||
@import context._
|
@import context._
|
||||||
@main("Sign in"){
|
@main("Sign in"){
|
||||||
|
<div class="content-wrapper main-center">
|
||||||
|
<div class="content body">
|
||||||
<div class="signin-form">
|
<div class="signin-form">
|
||||||
@settings.information.map { information =>
|
@settings.information.map { information =>
|
||||||
<div class="alert alert-info" style="background-color: white; color: #555; border-color: #4183c4; font-size: small; line-height: 120%;">
|
<div class="alert alert-info" style="background-color: white; color: #555; border-color: #4183c4; font-size: small; line-height: 120%;">
|
||||||
@@ -10,4 +12,6 @@
|
|||||||
}
|
}
|
||||||
@signinform(settings)
|
@signinform(settings)
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -359,7 +359,7 @@ div.activity-message {
|
|||||||
margin-left: 20px;
|
margin-left: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
fieldset.margin {
|
fieldset.border-top {
|
||||||
border-top: 1px solid #eee;
|
border-top: 1px solid #eee;
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
padding-top: 10px;
|
padding-top: 10px;
|
||||||
@@ -1448,6 +1448,7 @@ ul.collaborator li:hover {
|
|||||||
ul.collaborator a.remove {
|
ul.collaborator a.remove {
|
||||||
color: #dd0000;
|
color: #dd0000;
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
|
padding-top: 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/****************************************************************************/
|
/****************************************************************************/
|
||||||
|
|||||||
Reference in New Issue
Block a user