mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-10 01:05:14 +00:00
theme changes
This commit is contained in:
parent
d886f4df97
commit
9533b23272
|
@ -33,6 +33,10 @@ html, body {
|
||||||
margin: 0 .5em;
|
margin: 0 .5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.fa-m{
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
.list-group .list-group-item {
|
.list-group .list-group-item {
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
}
|
}
|
||||||
|
@ -419,6 +423,10 @@ html, body {
|
||||||
padding-top: 20px;
|
padding-top: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.gogs-repo-nav .btn-default{
|
||||||
|
font-family: Tahoma, Arial, sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
#gogs-repo-watching .dropdown-menu {
|
#gogs-repo-watching .dropdown-menu {
|
||||||
width: 280px;
|
width: 280px;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
@ -530,6 +538,10 @@ html, body {
|
||||||
color: #999;
|
color: #999;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.popover .repo-clone-div{
|
||||||
|
min-width: 200px;
|
||||||
|
}
|
||||||
|
|
||||||
/* #gogs-source */
|
/* #gogs-source */
|
||||||
#gogs-source {
|
#gogs-source {
|
||||||
margin-top: -20px;
|
margin-top: -20px;
|
||||||
|
|
|
@ -7,24 +7,24 @@
|
||||||
{{if not .IsBareRepo}}
|
{{if not .IsBareRepo}}
|
||||||
<div class="col-md-6 actions text-right">
|
<div class="col-md-6 actions text-right">
|
||||||
<div class="btn-group" id="gogs-repo-clone">
|
<div class="btn-group" id="gogs-repo-clone">
|
||||||
<button type="button" class="btn btn-default"><i class="fa fa-download"></i>Clone</button>
|
<button type="button" class="btn btn-default"><i class="fa fa-download fa-lg fa-m"></i></button>
|
||||||
<button type="button" class="btn btn-default dropdown-toggle" data-container="body" data-toggle="popover" data-placement="bottom" data-content="<label>SSH:</label><div class='input-group'><input type='text' class='form-control' value='git@{{AppDomain}}:{{.Owner.LowerName}}/{{.Repository.Name}}.git'></div>" data-html="1">
|
<button type="button" class="btn btn-default dropdown-toggle" data-container="body" data-toggle="popover" data-placement="bottom" data-content="<label>SSH:</label><div class='input-group'><input type='text' class='form-control' value='git@{{AppDomain}}:{{.Owner.LowerName}}/{{.Repository.Name}}.git'></div>" data-html="1">
|
||||||
<span class="caret"></span>
|
<span class="caret"></span>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div class="btn-group" id="gogs-repo-watching">
|
<div class="btn-group" id="gogs-repo-watching">
|
||||||
<button type="button" class="btn btn-default"><i class="fa fa-eye"></i>Watch {x}</button>
|
<button type="button" class="btn btn-default"><i class="fa fa-eye fa-lg fa-m"></i></button>
|
||||||
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
|
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
|
||||||
<span class="caret"></span>
|
<span class="caret"></span>
|
||||||
<span class="sr-only">Toggle Dropdown</span>
|
<span class="sr-only">Toggle Dropdown</span>
|
||||||
</button>
|
</button>
|
||||||
<div class="dropdown-menu" role="menu">
|
<div class="dropdown-menu" role="menu">
|
||||||
<div class="dropdown-item" data-val="not-watching">
|
<div class="dropdown-item text-left" data-val="not-watching">
|
||||||
<h4 role="presentation" class="dropdown-header">Not Watching</h4>
|
<h4 role="presentation" class="dropdown-header">Not Watching</h4>
|
||||||
<p class="description">You only receive notifications for conversations in which you participate or are @mentioned.</p>
|
<p class="description">You only receive notifications for conversations in which you participate or are @mentioned.</p>
|
||||||
<p class="divider"></p>
|
<p class="divider"></p>
|
||||||
</div>
|
</div>
|
||||||
<div class="dropdown-item" data-val="watching">
|
<div class="dropdown-item text-left" data-val="watching">
|
||||||
<h4 role="presentation" class="dropdown-header">Watching</h4>
|
<h4 role="presentation" class="dropdown-header">Watching</h4>
|
||||||
<p class="description">You receive notifications for all conversations in this repository.</p>
|
<p class="description">You receive notifications for all conversations in this repository.</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue