mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-18 09:04:35 +01:00
Merge pull request #12 from raziraz/master
table color fix, search field fix, account pages update.
This commit is contained in:
commit
7a896bd307
@ -91,8 +91,7 @@
|
||||
{{ HTML::menu_link('credit') }}
|
||||
{{-- HTML::nav_link('reports', 'Reports') --}}
|
||||
</ul>
|
||||
|
||||
<div class="navbar-form navbar-right">
|
||||
<div class="navbar-form navbar-right">
|
||||
@if (Auth::check() && !Auth::user()->registered)
|
||||
{{ Button::sm_success_primary('Sign up', array('id' => 'signUpButton', 'data-toggle'=>'modal', 'data-target'=>'#signUpModal')) }}
|
||||
@endif
|
||||
@ -122,6 +121,13 @@
|
||||
@endif
|
||||
</div>
|
||||
|
||||
|
||||
<form class="navbar-form navbar-right" role="search">
|
||||
<div class="form-group">
|
||||
<input type="text" id="search" class="form-control" placeholder="Search">
|
||||
</div>
|
||||
</form>
|
||||
|
||||
<ul class="nav navbar-nav navbar-right">
|
||||
<li class="dropdown">
|
||||
<a href="#" class="dropdown-toggle" data-toggle="dropdown">History <b class="caret"></b></a>
|
||||
@ -135,15 +141,16 @@
|
||||
@endif
|
||||
</ul>
|
||||
</li>
|
||||
<form class="navbar-form navbar-left" role="search">
|
||||
<div class="form-group">
|
||||
<input type="text" id="search" class="form-control" placeholder="Search">
|
||||
</div>
|
||||
</form>
|
||||
</ul>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div><!-- /.navbar-collapse -->
|
||||
</div>
|
||||
</nav>
|
||||
|
@ -56,14 +56,15 @@ textarea.form-control {
|
||||
height: auto !important;
|
||||
}
|
||||
/*tables*/
|
||||
table.dataTable { border-radius: 3px; color:#fff; border-collapse: collapse;
|
||||
table.dataTable { border-radius: 3px; border-collapse: collapse;
|
||||
/*border-spacing: 0;*/}
|
||||
.dataTable thead, .invoice-table thead {
|
||||
background: #e37329;
|
||||
table.dataTable thead > tr > th, table.invoice-table thead > tr > th {
|
||||
background: #e37329 !important;
|
||||
color:#fff;
|
||||
}
|
||||
th:first-child {
|
||||
border-radius: 3px 0 0 0;
|
||||
border-left: none;
|
||||
}
|
||||
th:last-child {
|
||||
border-radius: 0 3px 0 0;
|
||||
@ -321,6 +322,30 @@ padding-bottom: 20px;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.nav-tabs { color:#fff; }
|
||||
.nav-tabs.nav-justified>li>a {
|
||||
border: none;
|
||||
border-radius: 0;
|
||||
color: #fff;
|
||||
background-color: #9b9b9b;
|
||||
|
||||
}
|
||||
.nav-tabs.nav-justified>li:first-child>a {
|
||||
border-radius: 3px 0 0 3px;
|
||||
border-left: none;
|
||||
}
|
||||
.nav-tabs.nav-justified>li:last-child>a {
|
||||
border-radius: 0 3px 3px 0;
|
||||
}
|
||||
.nav-tabs.nav-justified>li>a:hover {
|
||||
background-color:#8a8a8a;
|
||||
}
|
||||
.nav-tabs.nav-justified>.active>a, .nav-tabs.nav-justified>.active>a:hover, .nav-tabs.nav-justified>.active>a:focus {
|
||||
border: none;
|
||||
background-color: #808080;
|
||||
font-weight: bold;
|
||||
color: #fff;
|
||||
}
|
||||
.navbar {
|
||||
background-color: #0b4d78 !important;
|
||||
background-image: none;
|
||||
@ -546,8 +571,13 @@ body {
|
||||
.navbar-default .navbar-toggle .icon-bar {
|
||||
background-color: #ecf0f1;
|
||||
}
|
||||
.navbar-form { margin-top: 15px; }
|
||||
.navbar-form { margin-top: 15px; padding-right:0; }
|
||||
.navbar-form:first-child { padding-right: 0; }
|
||||
.navbar-form .form-control { height: 30px; }
|
||||
.twitter-typeahead .tt-hint {
|
||||
height: 30px;
|
||||
border-radius: 3px;
|
||||
}
|
||||
.navbar-form .btn-default {
|
||||
color: #fff;
|
||||
background-color: #09334f;
|
||||
|
Loading…
Reference in New Issue
Block a user