352 lines
16 KiB
PHP
352 lines
16 KiB
PHP
@extends('layouts/contentNavbarLayout')
|
|
|
|
@section('title', 'Buttons - UI elements')
|
|
|
|
@section('content')
|
|
<h4 class="fw-bold py-3 mb-4">
|
|
<span class="text-muted fw-light">UI elements /</span>
|
|
Buttons
|
|
</h4>
|
|
|
|
<div class="row">
|
|
<!-- Basic Buttons -->
|
|
|
|
<div class="col-12">
|
|
<div class="card mb-4">
|
|
<h5 class="card-header">Basic Buttons</h5>
|
|
<div class="card-body">
|
|
<small class="text-light fw-semibold">Default</small>
|
|
<div class="demo-inline-spacing">
|
|
<button type="button" class="btn btn-primary">Primary</button>
|
|
<button type="button" class="btn btn-secondary">Secondary</button>
|
|
<button type="button" class="btn btn-success">Success</button>
|
|
<button type="button" class="btn btn-danger">Danger</button>
|
|
<button type="button" class="btn btn-warning">Warning</button>
|
|
<button type="button" class="btn btn-info">Info</button>
|
|
<button type="button" class="btn btn-dark">Dark</button>
|
|
</div>
|
|
</div>
|
|
<hr class="m-0" />
|
|
<div class="card-body">
|
|
<small class="text-light fw-semibold">Rounded</small>
|
|
<div class="demo-inline-spacing">
|
|
<button type="button" class="btn rounded-pill btn-primary">Primary</button>
|
|
<button type="button" class="btn rounded-pill btn-secondary">Secondary</button>
|
|
<button type="button" class="btn rounded-pill btn-success">Success</button>
|
|
<button type="button" class="btn rounded-pill btn-danger">Danger</button>
|
|
<button type="button" class="btn rounded-pill btn-warning">Warning</button>
|
|
<button type="button" class="btn rounded-pill btn-info">Info</button>
|
|
<button type="button" class="btn rounded-pill btn-dark">Dark</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Outline Buttons -->
|
|
|
|
<div class="col-12">
|
|
<div class="card mb-4">
|
|
<h5 class="card-header">Outline Buttons</h5>
|
|
<div class="card-body">
|
|
<small class="text-light fw-semibold">Default</small>
|
|
<div class="demo-inline-spacing">
|
|
<button type="button" class="btn btn-outline-primary">Primary</button>
|
|
<button type="button" class="btn btn-outline-secondary">Secondary</button>
|
|
<button type="button" class="btn btn-outline-success">Success</button>
|
|
<button type="button" class="btn btn-outline-danger">Danger</button>
|
|
<button type="button" class="btn btn-outline-warning">Warning</button>
|
|
<button type="button" class="btn btn-outline-info">Info</button>
|
|
<button type="button" class="btn btn-outline-dark">Dark</button>
|
|
</div>
|
|
</div>
|
|
<hr class="m-0" />
|
|
<div class="card-body">
|
|
<small class="text-light fw-semibold">Rounded</small>
|
|
<div class="demo-inline-spacing">
|
|
<button type="button" class="btn rounded-pill btn-outline-primary">Primary</button>
|
|
<button type="button" class="btn rounded-pill btn-outline-secondary">Secondary</button>
|
|
<button type="button" class="btn rounded-pill btn-outline-success">Success</button>
|
|
<button type="button" class="btn rounded-pill btn-outline-danger">Danger</button>
|
|
<button type="button" class="btn rounded-pill btn-outline-warning">Warning</button>
|
|
<button type="button" class="btn rounded-pill btn-outline-info">Info</button>
|
|
<button type="button" class="btn rounded-pill btn-outline-dark">Dark</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Buttons with Icons -->
|
|
|
|
<div class="col-12">
|
|
<div class="card mb-4">
|
|
<h5 class="card-header">Buttons with Icons</h5>
|
|
<div class="card-body">
|
|
<div class="row gy-3">
|
|
<div class="col-md-6">
|
|
<small class="text-light fw-semibold">Basic</small>
|
|
<div class="demo-inline-spacing">
|
|
<button type="button" class="btn btn-primary">
|
|
<span class="tf-icons bx bx-pie-chart-alt"></span> Primary
|
|
</button>
|
|
<button type="button" class="btn btn-secondary">
|
|
<span class="tf-icons bx bx-bell"></span> Secondary
|
|
</button>
|
|
</div>
|
|
<div class="demo-inline-spacing">
|
|
<button type="button" class="btn rounded-pill btn-primary">
|
|
<span class="tf-icons bx bx-pie-chart-alt"></span> Primary
|
|
</button>
|
|
<button type="button" class="btn rounded-pill btn-secondary">
|
|
<span class="tf-icons bx bx-bell"></span> Secondary
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-6">
|
|
<small class="text-light fw-semibold">Outline</small>
|
|
<div class="demo-inline-spacing">
|
|
<button type="button" class="btn btn-outline-primary">
|
|
<span class="tf-icons bx bx-pie-chart-alt"></span> Primary
|
|
</button>
|
|
<button type="button" class="btn btn-outline-secondary">
|
|
<span class="tf-icons bx bx-bell"></span> Secondary
|
|
</button>
|
|
</div>
|
|
<div class="demo-inline-spacing">
|
|
<button type="button" class="btn rounded-pill btn-outline-primary">
|
|
<span class="tf-icons bx bx-pie-chart-alt"></span> Primary
|
|
</button>
|
|
<button type="button" class="btn rounded-pill btn-outline-secondary">
|
|
<span class="tf-icons bx bx-bell"></span> Secondary
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<hr class="m-0" />
|
|
<div class="card-body">
|
|
<div class="row gy-3">
|
|
<div class="col-md-6">
|
|
<small class="text-light fw-semibold">Basic</small>
|
|
<div class="demo-inline-spacing">
|
|
<button type="button" class="btn btn-icon btn-primary">
|
|
<span class="tf-icons bx bx-pie-chart-alt"></span>
|
|
</button>
|
|
<button type="button" class="btn btn-icon btn-secondary">
|
|
<span class="tf-icons bx bx-bell"></span>
|
|
</button>
|
|
<button type="button" class="btn rounded-pill btn-icon btn-primary">
|
|
<span class="tf-icons bx bx-pie-chart-alt"></span>
|
|
</button>
|
|
<button type="button" class="btn rounded-pill btn-icon btn-secondary">
|
|
<span class="tf-icons bx bx-bell"></span>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-6">
|
|
<small class="text-light fw-semibold">Outline</small>
|
|
<div class="demo-inline-spacing">
|
|
<button type="button" class="btn btn-icon btn-outline-primary">
|
|
<span class="tf-icons bx bx-pie-chart-alt"></span>
|
|
</button>
|
|
<button type="button" class="btn btn-icon btn-outline-secondary">
|
|
<span class="tf-icons bx bx-bell"></span>
|
|
</button>
|
|
<button type="button" class="btn rounded-pill btn-icon btn-outline-primary">
|
|
<span class="tf-icons bx bx-pie-chart-alt"></span>
|
|
</button>
|
|
<button type="button" class="btn rounded-pill btn-icon btn-outline-secondary">
|
|
<span class="tf-icons bx bx-bell"></span>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Button Options -->
|
|
<div class="col-12">
|
|
<div class="card mb-4">
|
|
<h5 class="card-header">Button Options</h5>
|
|
<div class="card-body">
|
|
<small class="text-light fw-semibold">Sizes</small>
|
|
<div class="demo-inline-spacing">
|
|
<button type="button" class="btn btn-xl btn-primary">Button xl</button>
|
|
<button type="button" class="btn btn-lg btn-primary">Button lg</button>
|
|
<button type="button" class="btn btn-primary">Button</button>
|
|
<button type="button" class="btn btn-sm btn-primary">Button sm</button>
|
|
<button type="button" class="btn btn-xs btn-primary">Button xs</button>
|
|
</div>
|
|
</div>
|
|
<hr class="m-0" />
|
|
<div class="card-body">
|
|
<small class="text-light fw-semibold">Buttons State</small>
|
|
<div class="demo-inline-spacing">
|
|
<button type="button" class="btn btn-primary">Normal</button>
|
|
<button type="button" class="btn btn-primary active">Active</button>
|
|
<button type="button" class="btn btn-primary" disabled>Disabled</button>
|
|
</div>
|
|
</div>
|
|
<hr class="m-0" />
|
|
<div class="card-body">
|
|
<small class="text-light fw-semibold">Block level buttons</small>
|
|
<div class="row mt-3">
|
|
<div class="d-grid gap-2 col-lg-6 mx-auto">
|
|
<button class="btn btn-primary btn-lg" type="button">Button</button>
|
|
<button class="btn btn-secondary btn-lg" type="button">Button</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Button Plugin -->
|
|
<div class="col-12">
|
|
<div class="card mb-4">
|
|
<h5 class="card-header">Button Plugin</h5>
|
|
<div class="card-body">
|
|
<div class="row gy-3">
|
|
<div class="col-xl-3">
|
|
<div class="text-light small fw-semibold">Toggle states</div>
|
|
<div class="demo-vertical-spacing">
|
|
<button type="button" class="btn btn-primary d-block" data-bs-toggle="button" autocomplete="off">
|
|
Toggle button
|
|
</button>
|
|
<button type="button" class="btn btn-primary active d-block" data-bs-toggle="button" autocomplete="off" aria-pressed="true">
|
|
Active toggle button
|
|
</button>
|
|
<button type="button" class="btn btn-primary d-block" disabled data-bs-toggle="button" autocomplete="off">
|
|
Disabled toggle button
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<div class="col-xl-3">
|
|
<div class="text-light small fw-semibold">Checkbox toggle buttons</div>
|
|
<div class="demo-vertical-spacing">
|
|
<div class="d-block">
|
|
<input type="checkbox" class="btn-check" id="btn-check" autocomplete="off" />
|
|
<label class="btn btn-primary" for="btn-check">Single toggle</label>
|
|
</div>
|
|
<div class="d-block">
|
|
<input type="checkbox" class="btn-check" id="btn-check-2" checked autocomplete="off" />
|
|
<label class="btn btn-primary" for="btn-check-2">Checked</label>
|
|
</div>
|
|
<div class="d-block">
|
|
<input type="checkbox" class="btn-check" id="btn-check-3" checked autocomplete="off" />
|
|
<label class="btn btn-primary" for="btn-check-3">Checked</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-xl-6">
|
|
<div class="text-light small fw-semibold">Checkbox and radio</div>
|
|
<div class="demo-vertical-spacing">
|
|
<!-- Checkbox -->
|
|
<div class="btn-group" role="group" aria-label="Basic checkbox toggle button group">
|
|
<input type="checkbox" class="btn-check" id="btncheck1" checked autocomplete="off" />
|
|
<label class="btn btn-outline-primary" for="btncheck1">Checkbox 1 (pre-checked)</label>
|
|
<input type="checkbox" class="btn-check" id="btncheck2" autocomplete="off" />
|
|
<label class="btn btn-outline-primary" for="btncheck2">Checkbox 2</label>
|
|
<input type="checkbox" class="btn-check" id="btncheck3" autocomplete="off" />
|
|
<label class="btn btn-outline-primary" for="btncheck3">Checkbox 3</label>
|
|
</div>
|
|
<br />
|
|
<!-- Radio -->
|
|
<div class="btn-group" role="group" aria-label="Basic radio toggle button group">
|
|
<input type="radio" class="btn-check" name="btnradio" id="btnradio1" checked autocomplete="off" />
|
|
<label class="btn btn-outline-primary" for="btnradio1">Radio 1</label>
|
|
<input type="radio" class="btn-check" name="btnradio" id="btnradio2" autocomplete="off" />
|
|
<label class="btn btn-outline-primary" for="btnradio2">Radio 2</label>
|
|
<input type="radio" class="btn-check" name="btnradio" id="btnradio3" autocomplete="off" />
|
|
<label class="btn btn-outline-primary" for="btnradio3">Radio 3</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Button Group -->
|
|
<div class="col-12">
|
|
<div class="card">
|
|
<h5 class="card-header">Button Group</h5>
|
|
<div class="card-body">
|
|
<div class="row g-4">
|
|
<div class="col-md-6">
|
|
<small class="text-light fw-semibold">Basic</small>
|
|
<div class="mt-3">
|
|
<div class="btn-group" role="group" aria-label="Basic example">
|
|
<button type="button" class="btn btn-secondary">Left</button>
|
|
<button type="button" class="btn btn-secondary">Middle</button>
|
|
<button type="button" class="btn btn-secondary">Right</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-6">
|
|
<small class="text-light fw-semibold">Outline</small>
|
|
<div class="mt-3">
|
|
<div class="btn-group" role="group" aria-label="Basic example">
|
|
<button type="button" class="btn btn-outline-secondary">Left</button>
|
|
<button type="button" class="btn btn-outline-secondary">Middle</button>
|
|
<button type="button" class="btn btn-outline-secondary">Right</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<hr class="m-0" />
|
|
<div class="card-body">
|
|
<div class="row">
|
|
<div class="col-xl-6 mb-xl-0 mb-3">
|
|
<small class="text-light fw-semibold">Button Toolbar</small>
|
|
<div class="btn-toolbar demo-inline-spacing" role="toolbar" aria-label="Toolbar with button groups">
|
|
<div class="btn-group" role="group" aria-label="First group">
|
|
<button type="button" class="btn btn-outline-secondary"><i class="tf-icons bx bx-bell"></i></button>
|
|
<button type="button" class="btn btn-outline-secondary"><i class="tf-icons bx bx-task"></i></button>
|
|
<button type="button" class="btn btn-outline-secondary">
|
|
<i class="tf-icons bx bx-check-shield"></i>
|
|
</button>
|
|
<button type="button" class="btn btn-outline-secondary">
|
|
<i class="tf-icons bx bx-comment-dots"></i>
|
|
</button>
|
|
</div>
|
|
<div class="btn-group" role="group" aria-label="Second group">
|
|
<button type="button" class="btn btn-outline-secondary"><i class="tf-icons bx bx-bold"></i></button>
|
|
<button type="button" class="btn btn-outline-secondary"><i class="tf-icons bx bx-italic"></i></button>
|
|
<button type="button" class="btn btn-outline-secondary">
|
|
<i class="tf-icons bx bx-underline"></i>
|
|
</button>
|
|
</div>
|
|
<div class="btn-group" role="group" aria-label="Third group">
|
|
<button type="button" class="btn btn-outline-secondary">
|
|
<i class="tf-icons bx bx-volume-full"></i>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-xl-6">
|
|
<small class="text-light fw-semibold">Button Nesting</small>
|
|
<div class="mt-3">
|
|
<div class="btn-group" role="group" aria-label="Button group with nested dropdown">
|
|
<button type="button" class="btn btn-outline-secondary"><i class="tf-icons bx bx-car"></i></button>
|
|
<button type="button" class="btn btn-outline-secondary"><i class="tf-icons bx bx-rocket"></i></button>
|
|
<button type="button" class="btn btn-outline-secondary"><i class="tf-icons bx bx-bulb"></i></button>
|
|
<div class="btn-group" role="group">
|
|
<button id="btnGroupDrop1" type="button" class="btn btn-outline-secondary dropdown-toggle" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
Dropdown
|
|
</button>
|
|
<div class="dropdown-menu" aria-labelledby="btnGroupDrop1">
|
|
<a class="dropdown-item" href="javascript:void(0);">Dropdown link</a>
|
|
<a class="dropdown-item" href="javascript:void(0);">Dropdown link</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection
|