You are here

apigee_edge.app_listing.css in Apigee Edge 8

/*
 * Copyright 2018 Google Inc.
 *
 * This program is free software; you can redistribute it and/or modify it under
 * the terms of the GNU General Public License version 2 as published by the
 * Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
 * License for more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc., 51
 * Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 */

/* App listing components */
.table--app-list .circle {
  border-radius: 50%;
  color: white;
  width: 14px;
  height: 14px;
  background: orange;
  display: table-cell;
  text-align: center;
  font-size: 85%;
  margin: 4px 0 0 1rem;
  float: left;
}

.table--app-list .wrapper--status {
  float: left;
}

.table--app-list .row--warning {
  display: none;
}

/* Collapsible functionality. */
.table--app-list .toggle--warning {
  display: inline-block;
  overflow: hidden;
  border-bottom: none;
  text-decoration: none;
  position: relative;
  top: 4px;
  font-size: 85%;
}

.table--app-list .toggle--warning:hover,
.table--app-list .toggle--warning:active,
.table--app-list .toggle--warning:visited,
.table--app-list .toggle--warning:focus {
  border-bottom: none;
}

.table--app-list .toggle--warning.open span {
  background-position: -65px -16px;
}

File

css/apigee_edge.app_listing.css
View source
  1. /*
  2. * Copyright 2018 Google Inc.
  3. *
  4. * This program is free software; you can redistribute it and/or modify it under
  5. * the terms of the GNU General Public License version 2 as published by the
  6. * Free Software Foundation.
  7. *
  8. * This program is distributed in the hope that it will be useful, but WITHOUT
  9. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
  11. * License for more details.
  12. *
  13. * You should have received a copy of the GNU General Public License along
  14. * with this program; if not, write to the Free Software Foundation, Inc., 51
  15. * Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  16. */
  17. /* App listing components */
  18. .table--app-list .circle {
  19. border-radius: 50%;
  20. color: white;
  21. width: 14px;
  22. height: 14px;
  23. background: orange;
  24. display: table-cell;
  25. text-align: center;
  26. font-size: 85%;
  27. margin: 4px 0 0 1rem;
  28. float: left;
  29. }
  30. .table--app-list .wrapper--status {
  31. float: left;
  32. }
  33. .table--app-list .row--warning {
  34. display: none;
  35. }
  36. /* Collapsible functionality. */
  37. .table--app-list .toggle--warning {
  38. display: inline-block;
  39. overflow: hidden;
  40. border-bottom: none;
  41. text-decoration: none;
  42. position: relative;
  43. top: 4px;
  44. font-size: 85%;
  45. }
  46. .table--app-list .toggle--warning:hover,
  47. .table--app-list .toggle--warning:active,
  48. .table--app-list .toggle--warning:visited,
  49. .table--app-list .toggle--warning:focus {
  50. border-bottom: none;
  51. }
  52. .table--app-list .toggle--warning.open span {
  53. background-position: -65px -16px;
  54. }