Made color scheme consistent
This commit is contained in:
parent
41e88e1ae4
commit
21d046d4e2
@ -30,6 +30,11 @@ aside {
|
|||||||
color: azure;
|
color: azure;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.addlist {
|
||||||
|
background-color: #2a2a2a;
|
||||||
|
color: azure;
|
||||||
|
}
|
||||||
|
|
||||||
#logbtn {
|
#logbtn {
|
||||||
left: 10em;
|
left: 10em;
|
||||||
padding-top: 10px;
|
padding-top: 10px;
|
||||||
|
|||||||
@ -53,7 +53,7 @@
|
|||||||
<div class="form-group row">
|
<div class="form-group row">
|
||||||
<label for="addlist" class="col-sm-2 col-form-label">List</label>
|
<label for="addlist" class="col-sm-2 col-form-label">List</label>
|
||||||
<div class="col-sm-10">
|
<div class="col-sm-10">
|
||||||
<input type=text class="form-control" id="addlist" type="text" name="addList" />
|
<input type=text class="form-control addlist" id="addlist" type="text" name="addList" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group row">
|
<div class="form-group row">
|
||||||
@ -76,9 +76,9 @@
|
|||||||
<form action="/post" method="POST">
|
<form action="/post" method="POST">
|
||||||
<div class="form-row">
|
<div class="form-row">
|
||||||
<div class="col">
|
<div class="col">
|
||||||
<label for="usernamelist" class="col-form-label form-control">User</label>
|
<label for="usernamelist" class="addlist">User</label>
|
||||||
<select id="usernamelist" name="add2list"
|
<select id="usernamelist" name="add2list"
|
||||||
class="custom-select custom-select-lg mb-3 form-control">
|
class="custom-select custom-select-lg mb-3 form-control addlist">
|
||||||
{% for userid in data["users"] %}
|
{% for userid in data["users"] %}
|
||||||
<option type="submit" value="{{userid[2]}}" id="addbox" name="User2list"
|
<option type="submit" value="{{userid[2]}}" id="addbox" name="User2list"
|
||||||
class="form-control">{{userid[0].title()}}</option>
|
class="form-control">{{userid[0].title()}}</option>
|
||||||
@ -86,8 +86,8 @@
|
|||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
<div class="col">
|
<div class="col">
|
||||||
<label for="listlist" class="col-form-label form-control">List</label>
|
<label for="listlist" class="addlist">List</label>
|
||||||
<select id="listlist" name="listID" class="custom-select custom-select-lg mb-3 form-control">
|
<select id="listlist" name="listID" class="custom-select custom-select-lg mb-3 form-control addlist">
|
||||||
{% for x in data["lists"] %}
|
{% for x in data["lists"] %}
|
||||||
<option type="submit" value="{{x}}" id="addbox" name="User2list" class="form-control">
|
<option type="submit" value="{{x}}" id="addbox" name="User2list" class="form-control">
|
||||||
{{data["lists"][x]}}</option>
|
{{data["lists"][x]}}</option>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user