GRAYBYTE WORDPRESS FILE MANAGER5191

Server IP : 198.54.121.189 / Your IP : 216.73.216.140
System : Linux premium69.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
PHP Version : 7.4.33
Disable Function : NONE
cURL : ON | WGET : ON | Sudo : OFF | Pkexec : OFF
Directory : /home/giriqfky/public_html/Barga/assets/js/bootstrap/less/
Upload Files :
Current_dir [ Writeable ] Document_root [ Writeable ]

Command :


Current File : /home/giriqfky/public_html/Barga/assets/js/bootstrap/less//panels.less
//
// Panels
// --------------------------------------------------


// Base class
.panel {
  margin-bottom: @line-height-computed;
  background-color: @panel-bg;
  border: 1px solid transparent;
  border-radius: @panel-border-radius;
  .box-shadow(0 1px 1px rgba(0,0,0,.05));
}

// Panel contents
.panel-body {
  padding: @panel-body-padding;
  &:extend(.clearfix all);
}

// Optional heading
.panel-heading {
  padding: @panel-heading-padding;
  border-bottom: 1px solid transparent;
  .border-top-radius((@panel-border-radius - 1));

  > .dropdown .dropdown-toggle {
    color: inherit;
  }
}

// Within heading, strip any `h*` tag of its default margins for spacing.
.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: ceil((@font-size-base * 1.125));
  color: inherit;

  > a,
  > small,
  > .small,
  > small > a,
  > .small > a {
    color: inherit;
  }
}

// Optional footer (stays gray in every modifier class)
.panel-footer {
  padding: @panel-footer-padding;
  background-color: @panel-footer-bg;
  border-top: 1px solid @panel-inner-border;
  .border-bottom-radius((@panel-border-radius - 1));
}


// List groups in panels
//
// By default, space out list group content from panel headings to account for
// any kind of custom content between the two.

.panel {
  > .list-group,
  > .panel-collapse > .list-group {
    margin-bottom: 0;

    .list-group-item {
      border-width: 1px 0;
      border-radius: 0;
    }

    // Add border top radius for first one
    &:first-child {
      .list-group-item:first-child {
        border-top: 0;
        .border-top-radius((@panel-border-radius - 1));
      }
    }

    // Add border bottom radius for last one
    &:last-child {
      .list-group-item:last-child {
        border-bottom: 0;
        .border-bottom-radius((@panel-border-radius - 1));
      }
    }
  }
  > .panel-heading + .panel-collapse > .list-group {
    .list-group-item:first-child {
      .border-top-radius(0);
    }
  }
}
// Collapse space between when there's no additional content.
.panel-heading + .list-group {
  .list-group-item:first-child {
    border-top-width: 0;
  }
}
.list-group + .panel-footer {
  border-top-width: 0;
}

// Tables in panels
//
// Place a non-bordered `.table` within a panel (not within a `.panel-body`) and
// watch it go full width.

.panel {
  > .table,
  > .table-responsive > .table,
  > .panel-collapse > .table {
    margin-bottom: 0;

    caption {
      padding-left: @panel-body-padding;
      padding-right: @panel-body-padding;
    }
  }
  // Add border top radius for first one
  > .table:first-child,
  > .table-responsive:first-child > .table:first-child {
    .border-top-radius((@panel-border-radius - 1));

    > thead:first-child,
    > tbody:first-child {
      > tr:first-child {
        border-top-left-radius: (@panel-border-radius - 1);
        border-top-right-radius: (@panel-border-radius - 1);

        td:first-child,
        th:first-child {
          border-top-left-radius: (@panel-border-radius - 1);
        }
        td:last-child,
        th:last-child {
          border-top-right-radius: (@panel-border-radius - 1);
        }
      }
    }
  }
  // Add border bottom radius for last one
  > .table:last-child,
  > .table-responsive:last-child > .table:last-child {
    .border-bottom-radius((@panel-border-radius - 1));

    > tbody:last-child,
    > tfoot:last-child {
      > tr:last-child {
        border-bottom-left-radius: (@panel-border-radius - 1);
        border-bottom-right-radius: (@panel-border-radius - 1);

        td:first-child,
        th:first-child {
          border-bottom-left-radius: (@panel-border-radius - 1);
        }
        td:last-child,
        th:last-child {
          border-bottom-right-radius: (@panel-border-radius - 1);
        }
      }
    }
  }
  > .panel-body + .table,
  > .panel-body + .table-responsive,
  > .table + .panel-body,
  > .table-responsive + .panel-body {
    border-top: 1px solid @table-border-color;
  }
  > .table > tbody:first-child > tr:first-child th,
  > .table > tbody:first-child > tr:first-child td {
    border-top: 0;
  }
  > .table-bordered,
  > .table-responsive > .table-bordered {
    border: 0;
    > thead,
    > tbody,
    > tfoot {
      > tr {
        > th:first-child,
        > td:first-child {
          border-left: 0;
        }
        > th:last-child,
        > td:last-child {
          border-right: 0;
        }
      }
    }
    > thead,
    > tbody {
      > tr:first-child {
        > td,
        > th {
          border-bottom: 0;
        }
      }
    }
    > tbody,
    > tfoot {
      > tr:last-child {
        > td,
        > th {
          border-bottom: 0;
        }
      }
    }
  }
  > .table-responsive {
    border: 0;
    margin-bottom: 0;
  }
}


// Collapsible panels (aka, accordion)
//
// Wrap a series of panels in `.panel-group` to turn them into an accordion with
// the help of our collapse JavaScript plugin.

.panel-group {
  margin-bottom: @line-height-computed;

  // Tighten up margin so it's only between panels
  .panel {
    margin-bottom: 0;
    border-radius: @panel-border-radius;

    + .panel {
      margin-top: 5px;
    }
  }

  .panel-heading {
    border-bottom: 0;

    + .panel-collapse > .panel-body,
    + .panel-collapse > .list-group {
      border-top: 1px solid @panel-inner-border;
    }
  }

  .panel-footer {
    border-top: 0;
    + .panel-collapse .panel-body {
      border-bottom: 1px solid @panel-inner-border;
    }
  }
}


// Contextual variations
.panel-default {
  .panel-variant(@panel-default-border; @panel-default-text; @panel-default-heading-bg; @panel-default-border);
}
.panel-primary {
  .panel-variant(@panel-primary-border; @panel-primary-text; @panel-primary-heading-bg; @panel-primary-border);
}
.panel-success {
  .panel-variant(@panel-success-border; @panel-success-text; @panel-success-heading-bg; @panel-success-border);
}
.panel-info {
  .panel-variant(@panel-info-border; @panel-info-text; @panel-info-heading-bg; @panel-info-border);
}
.panel-warning {
  .panel-variant(@panel-warning-border; @panel-warning-text; @panel-warning-heading-bg; @panel-warning-border);
}
.panel-danger {
  .panel-variant(@panel-danger-border; @panel-danger-text; @panel-danger-heading-bg; @panel-danger-border);
}

[ Back ]
Name
Size
Last Modified
Owner / Group
Permissions
Options
..
--
July 27 2024 00:19:25
giriqfky / giriqfky
0755
mixins
--
July 27 2024 00:19:25
giriqfky / giriqfky
0755
.csscomb.json
7.909 KB
July 27 2024 00:19:25
giriqfky / giriqfky
0644
.csslintrc
0.445 KB
July 27 2024 00:19:25
giriqfky / giriqfky
0644
alerts.less
1.482 KB
July 27 2024 00:19:25
giriqfky / giriqfky
0644
badges.less
1.171 KB
July 27 2024 00:19:25
giriqfky / giriqfky
0644
bootstrap.less
1.261 KB
July 27 2024 00:19:25
giriqfky / giriqfky
0644
breadcrumbs.less
0.58 KB
July 27 2024 00:19:25
giriqfky / giriqfky
0644
button-groups.less
5.547 KB
July 27 2024 00:19:25
giriqfky / giriqfky
0644
buttons.less
3.576 KB
July 27 2024 00:19:25
giriqfky / giriqfky
0644
carousel.less
5.519 KB
July 27 2024 00:19:25
giriqfky / giriqfky
0644
close.less
0.746 KB
July 27 2024 00:19:25
giriqfky / giriqfky
0644
code.less
1.368 KB
July 27 2024 00:19:25
giriqfky / giriqfky
0644
component-animations.less
0.65 KB
July 27 2024 00:19:25
giriqfky / giriqfky
0644
dropdowns.less
4.762 KB
July 27 2024 00:19:25
giriqfky / giriqfky
0644
forms.less
15.451 KB
July 27 2024 00:19:25
giriqfky / giriqfky
0644
glyphicons.less
19.343 KB
July 27 2024 00:19:25
giriqfky / giriqfky
0644
grid.less
1.354 KB
July 27 2024 00:19:25
giriqfky / giriqfky
0644
input-groups.less
4.185 KB
July 27 2024 00:19:25
giriqfky / giriqfky
0644
jumbotron.less
1.125 KB
July 27 2024 00:19:25
giriqfky / giriqfky
0644
labels.less
1.054 KB
July 27 2024 00:19:25
giriqfky / giriqfky
0644
list-group.less
3.051 KB
July 27 2024 00:19:25
giriqfky / giriqfky
0644
media.less
0.879 KB
July 27 2024 00:19:25
giriqfky / giriqfky
0644
mixins.less
1.109 KB
July 27 2024 00:19:25
giriqfky / giriqfky
0644
modals.less
3.444 KB
July 27 2024 00:19:25
giriqfky / giriqfky
0644
navbar.less
14.285 KB
July 27 2024 00:19:25
giriqfky / giriqfky
0644
navs.less
4.814 KB
July 27 2024 00:19:25
giriqfky / giriqfky
0644
normalize.less
7.382 KB
July 27 2024 00:19:25
giriqfky / giriqfky
0644
pager.less
0.841 KB
July 27 2024 00:19:25
giriqfky / giriqfky
0644
pagination.less
2.011 KB
July 27 2024 00:19:25
giriqfky / giriqfky
0644
panels.less
6.132 KB
July 27 2024 00:19:25
giriqfky / giriqfky
0644
popovers.less
3.406 KB
July 27 2024 00:19:25
giriqfky / giriqfky
0644
print.less
1.894 KB
July 27 2024 00:19:25
giriqfky / giriqfky
0644
progress-bars.less
1.88 KB
July 27 2024 00:19:25
giriqfky / giriqfky
0644
responsive-embed.less
0.533 KB
July 27 2024 00:19:25
giriqfky / giriqfky
0644
responsive-utilities.less
4.162 KB
July 27 2024 00:19:25
giriqfky / giriqfky
0644
scaffolding.less
2.917 KB
July 27 2024 00:19:25
giriqfky / giriqfky
0644
tables.less
4.504 KB
July 27 2024 00:19:25
giriqfky / giriqfky
0644
theme.less
8.005 KB
July 27 2024 00:19:25
giriqfky / giriqfky
0644
thumbnails.less
0.735 KB
July 27 2024 00:19:25
giriqfky / giriqfky
0644
tooltip.less
2.915 KB
July 27 2024 00:19:25
giriqfky / giriqfky
0644
type.less
5.814 KB
July 27 2024 00:19:25
giriqfky / giriqfky
0644
utilities.less
0.729 KB
July 27 2024 00:19:25
giriqfky / giriqfky
0644
variables.less
26.828 KB
July 27 2024 00:19:25
giriqfky / giriqfky
0644
wells.less
0.515 KB
July 27 2024 00:19:25
giriqfky / giriqfky
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025
CONTACT ME
Static GIF