mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-20 09:20:12 +01:00
parent
7b1c4cc5ea
commit
0beef0b8a9
15 changed files with 82 additions and 48 deletions
|
|
@ -0,0 +1,9 @@
|
|||
@import "../../../../../../theme/sass/conf/conf.scss";
|
||||
|
||||
select.form-control[multiple] {
|
||||
overflow-y: scroll;
|
||||
}
|
||||
|
||||
select.form-control {
|
||||
color: $default;
|
||||
}
|
||||
|
|
@ -2,6 +2,7 @@ import { Component } from '@angular/core';
|
|||
|
||||
@Component({
|
||||
selector: 'select-inputs',
|
||||
styles: [require('./selectInput.scss')],
|
||||
template: require('./selectInputs.html')
|
||||
})
|
||||
export class SelectInputs {
|
||||
|
|
|
|||
|
|
@ -12,14 +12,14 @@
|
|||
</div>
|
||||
</div>
|
||||
<div class="form-group row">
|
||||
<div class="col-sm-offset-2 col-sm-10">
|
||||
<div class="offset-sm-2 col-sm-10">
|
||||
<div class="checkbox">
|
||||
<ba-checkbox [(ngModel)]="isRemember" [label]="'Remember me'" [ngModelOptions]="{standalone: true}"></ba-checkbox>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group row">
|
||||
<div class="col-sm-offset-2 col-sm-10">
|
||||
<div class="offset-sm-2 col-sm-10">
|
||||
<button type="submit" class="btn btn-warning">Sign in</button>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@ import {Component} from '@angular/core';
|
|||
|
||||
@Component({
|
||||
selector: 'inline-form',
|
||||
styles: [require('./inlineForm.scss')],
|
||||
template: require('./inlineForm.html'),
|
||||
})
|
||||
export class InlineForm {
|
||||
|
|
|
|||
|
|
@ -1,12 +1,16 @@
|
|||
<form class="row form-inline">
|
||||
<div class="form-group col-sm-3 col-xs-6">
|
||||
<div class="form-group col-sm-3">
|
||||
<input type="text" class="form-control" id="exampleInputName2" placeholder="Name">
|
||||
</div>
|
||||
<div class="form-group col-sm-3 col-xs-6">
|
||||
<div class="form-group col-sm-3">
|
||||
<input type="email" class="form-control" id="exampleInputEmail2" placeholder="Email">
|
||||
</div>
|
||||
<div class="checkbox">
|
||||
<ba-checkbox [(ngModel)]="isRemember" [label]="'Remember me'" [ngModelOptions]="{standalone: true}"></ba-checkbox>
|
||||
<div class="form-group">
|
||||
<div class="checkbox">
|
||||
<ba-checkbox [(ngModel)]="isRemember" [label]="'Remember me'" [ngModelOptions]="{standalone: true}"></ba-checkbox>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<button type="submit" class="btn btn-primary">Send invitation</button>
|
||||
</div>
|
||||
<button type="submit" class="btn btn-primary">Send invitation</button>
|
||||
</form>
|
||||
|
|
|
|||
|
|
@ -0,0 +1,5 @@
|
|||
.checkbox {
|
||||
display: inline-block;
|
||||
margin-bottom: -12px;
|
||||
margin-left: 12px;
|
||||
}
|
||||
|
|
@ -34,7 +34,7 @@
|
|||
</div>
|
||||
</div>
|
||||
<div class="form-group row">
|
||||
<div class="col-sm-offset-2 col-sm-10">
|
||||
<div class="offset-sm-2 col-sm-10">
|
||||
<button [disabled]="!form.valid" type="submit" class="btn btn-default btn-auth">Sign up</button>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -160,21 +160,21 @@
|
|||
<div class="col-md-4">
|
||||
<div>.col-md-4</div>
|
||||
</div>
|
||||
<div class="col-md-4 col-md-offset-4">
|
||||
<div>.col-md-4 .col-md-offset-4</div>
|
||||
<div class="col-md-4 offset-md-4">
|
||||
<div>.col-md-4 .offset-md-4</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row show-grid">
|
||||
<div class="col-md-3 col-md-offset-3">
|
||||
<div>.col-md-3 .col-md-offset-3</div>
|
||||
<div class="col-md-3 offset-md-3">
|
||||
<div>.col-md-3 .offset-md-3</div>
|
||||
</div>
|
||||
<div class="col-md-3 col-md-offset-3">
|
||||
<div>.col-md-3 .col-md-offset-3</div>
|
||||
<div class="col-md-3 offset-md-3">
|
||||
<div>.col-md-3 .offset-md-3</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row show-grid">
|
||||
<div class="col-md-6 col-md-offset-3">
|
||||
<div>.col-md-6 .col-md-offset-3</div>
|
||||
<div class="col-md-6 offset-md-3">
|
||||
<div>.col-md-6 .offset-md-3</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
|
|||
|
|
@ -48,15 +48,11 @@
|
|||
position: relative;
|
||||
}
|
||||
|
||||
label.custom-checkbox > span {
|
||||
display: block;
|
||||
margin-top: -13px;
|
||||
margin-right: 10px;
|
||||
}
|
||||
label.custom-checkbox {
|
||||
margin-bottom: 12px;
|
||||
|
||||
.form-horizontal {
|
||||
.checkbox, .checkbox-inline{
|
||||
padding-top: 0;
|
||||
& > span {
|
||||
display: block;
|
||||
margin-right: 10px;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -2,8 +2,7 @@
|
|||
<h1 class="al-title">{{ activePageTitle }}</h1>
|
||||
|
||||
<ul class="breadcrumb al-breadcrumb">
|
||||
<li>
|
||||
<a routerLink="/pages/dashboard">Home</a></li>
|
||||
<li>{{ activePageTitle }}</li>
|
||||
<li class="breadcrumb-item"><a routerLink="/pages/dashboard">Home</a></li>
|
||||
<li class="breadcrumb-item active">{{ activePageTitle }}</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -30,6 +30,10 @@ h1.al-title {
|
|||
a {
|
||||
color: $primary-light;
|
||||
}
|
||||
|
||||
&.breadcrumb-item.active {
|
||||
color: $default;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -116,7 +116,6 @@ a.collapse-menu-link {
|
|||
|
||||
.search {
|
||||
text-shadow: none;
|
||||
color: $sidebar-text;
|
||||
font-size: 13px;
|
||||
line-height: 25px;
|
||||
transition: all 0.5s ease;
|
||||
|
|
@ -138,6 +137,7 @@ a.collapse-menu-link {
|
|||
margin-right: 13px;
|
||||
}
|
||||
input {
|
||||
color: $sidebar-text;
|
||||
background: none;
|
||||
border: none;
|
||||
outline: none;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue