Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 54 additions & 0 deletions public/src/css/common.css
Original file line number Diff line number Diff line change
Expand Up @@ -1021,4 +1021,58 @@ a.v_highlight_more {
.navbar-form .form-control {
width: 350px;
}
}

.form-control {
width: 350px
}


}
.block_container {
padding-left: 30px!important
}
input:focus::-webkit-input-placeholder {
color: transparent!important;
text-align: center
}
input:focus:-moz-placeholder {
color: transparent!important;
text-align: center
}
input:focus::-moz-placeholder {
color: transparent!important;
text-align: center
}
input:focus:-ms-input-placeholder {
color: transparent!important;
text-align: center
}
::-webkit-input-placeholder {
text-align: center;
color: #5a6d81;
font-size: 13px!important;
font-family: 'Source Sans Pro, Regular'!important
}
:-moz-placeholder {
text-align: center;
color: #5a6d81;
font-size: 13px!important;
font-family: 'Source Sans Pro, Regular'!important
}
::-moz-placeholder {
text-align: center;
color: #5a6d81;
font-size: 13px!important;
font-family: 'Source Sans Pro, Regular'!important
}
:-ms-input-placeholder {
text-align: center;
color: #5a6d81;
font-size: 13px!important;
font-family: 'Source Sans Pro, Regular'!important
}
li.dropdown {
background: #132f4b;
margin-left: 5px;
}
2 changes: 1 addition & 1 deletion public/views/block_list.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div data-ng-include src="'/views/includes/connection.html'"></div>
<section data-ng-controller="BlocksController" data-ng-init="list()">
<div class="container">
<div class="container block_container">
<div class="row">
<div class="layout col-xs-15 col-md-7">
<div class="page-header">
Expand Down
2 changes: 1 addition & 1 deletion public/views/includes/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<ul class="navbar-brand-list">
<ul class="nav">
<li class="hidden-xs">
<a class="navbar-brand brand-link" href="/">
<span class="svg-logo"></span>
Expand Down
2 changes: 1 addition & 1 deletion public/views/includes/search.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<span class="input-group-addon" id="basic-addon1">
<span class="svg-search"></span>
</span>
<input id="search" type="text" class="form-control" data-ng-model="q" data-ng-class="{'loading': loading}" placeholder="{{'Search for block, transaction or address'|translate}}" data-ng-submit="search()" focus="true">
<input id="search" type="text" class="form-control" data-ng-model="q" data-ng-class="{'loading': loading}" placeholder="{{'Search for block, transaction or address'|translate}}" data-ng-submit="search()">
</div>
</div>
<div class="no_matching text-danger" data-ng-show="badQuery" translate>No matching records found!</div>
Expand Down
2 changes: 1 addition & 1 deletion public/views/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
</div>
<div data-ng-include src="'/views/includes/connection.html'"></div>
<section data-ng-controller="IndexController" data-ng-init="index()">
<div class="container">
<div class="container block_container">
<div id="home" class="row">
<div class="layout col-xs-15 col-md-7">
<div id="search-form-mobile" class="visible-xs" data-ng-include src="'/views/includes/search.html'"></div>
Expand Down