mirror of
https://github.com/mdbootstrap/mdb-ui-kit.git
synced 2025-07-27 00:19:50 +03:00
commit
c5cff34fc6
6
dist/test.html
vendored
6
dist/test.html
vendored
|
@ -4,9 +4,9 @@
|
|||
|
||||
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css" rel="stylesheet">
|
||||
<!-- Include roboto.css to use the Roboto web font, material.css to include the theme and ripples.css to style the ripple effect -->
|
||||
<link href="dist/css/roboto.min.css" rel="stylesheet">
|
||||
<link href="dist/css/material.min.css" rel="stylesheet">
|
||||
<link href="dist/css/ripples.min.css" rel="stylesheet">
|
||||
<link href="css/roboto.min.css" rel="stylesheet">
|
||||
<link href="css/material.min.css" rel="stylesheet">
|
||||
<link href="css/ripples.min.css" rel="stylesheet">
|
||||
|
||||
</head>
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
// Modal body
|
||||
// Where all modal content resides (sibling of .modal-header and .modal-footer)
|
||||
.modal-body {
|
||||
padding-top: 0px;
|
||||
padding-top: 24px;
|
||||
padding-right: 24px;
|
||||
padding-bottom: 16px;
|
||||
padding-left: 24px;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
.navbar {
|
||||
background-color: @primary;
|
||||
border: 0;
|
||||
border-radius: 0;
|
||||
border: @zero;
|
||||
border-radius: @zero;
|
||||
|
||||
.navbar-brand {
|
||||
position: relative;
|
||||
|
@ -54,7 +54,7 @@
|
|||
|
||||
// Darken the responsive nav toggle
|
||||
.navbar-toggle {
|
||||
border: 0;
|
||||
border: @zero;
|
||||
&:hover,
|
||||
&:focus {
|
||||
background-color: transparent;
|
||||
|
@ -96,7 +96,7 @@
|
|||
// Dropdowns get custom display
|
||||
.open .dropdown-menu {
|
||||
> .dropdown-header {
|
||||
border: 0;
|
||||
border: @zero;
|
||||
color: inherit;
|
||||
}
|
||||
.divider {
|
||||
|
@ -174,10 +174,14 @@
|
|||
color: @text-color;
|
||||
}
|
||||
.dropdown-menu {
|
||||
border-radius: @dropdown-radius;
|
||||
li > a {
|
||||
font-size: @dropdown-font-size;
|
||||
padding: 13px 16px;
|
||||
&:hover,
|
||||
&:focus {
|
||||
color: @material-color;
|
||||
background-color: @lightgrey;
|
||||
}
|
||||
}
|
||||
.active > a {
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// Material Global vars
|
||||
@zero: 0;
|
||||
|
||||
// material icons path
|
||||
@material-font-path: "../fonts";
|
||||
|
||||
|
@ -95,3 +98,7 @@
|
|||
// Inputs
|
||||
@input-placeholder-color: #BDBDBD;
|
||||
@floating-label-size-ratio: 70 / 100;
|
||||
|
||||
// Dropdown Menu
|
||||
@dropdown-radius: 2px;
|
||||
@dropdown-font-size: 16px;
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
@font-face {
|
||||
font-family: 'Material-Design-Icons';
|
||||
src:url('#{material-font-path}/Material-Design-Icons.eot?3ocs8m');
|
||||
src:url('#{material-font-path}/Material-Design-Icons.eot?#iefix3ocs8m') format('embedded-opentype'),
|
||||
url('#{material-font-path}/Material-Design-Icons.woff?3ocs8m') format('woff'),
|
||||
url('#{material-font-path}/Material-Design-Icons.ttf?3ocs8m') format('truetype'),
|
||||
url('#{material-font-path}/Material-Design-Icons.svg?3ocs8m#Material-Design-Icons') format('svg');
|
||||
src:url('#{$material-font-path}/Material-Design-Icons.eot?3ocs8m');
|
||||
src:url('#{$material-font-path}/Material-Design-Icons.eot?#iefix3ocs8m') format('embedded-opentype'),
|
||||
url('#{$material-font-path}/Material-Design-Icons.woff?3ocs8m') format('woff'),
|
||||
url('#{$material-font-path}/Material-Design-Icons.ttf?3ocs8m') format('truetype'),
|
||||
url('#{$material-font-path}/Material-Design-Icons.svg?3ocs8m#Material-Design-Icons') format('svg');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user