All Downloads are FREE. Search and download functionalities are using the official Maven repository.

dotty_res.styles.theme.components.dropdown-menu.css Maven / Gradle / Ivy

There is a newer version: 3.6.0-RC1-bin-20240903-21a3d39-NIGHTLY
Show newest version
/* should be used with body-small */
.dropdown-menu {
  background-color: var(--action-primary-background-default-solid);
  border-radius: 4px;
  box-shadow: 0px 10px 38px -10px var(--shadow-first),
    0px 10px 20px -15px var(--shadow-second),
    inset 0px 0px 0px 1px var(--shadow-inset);
  flex-direction: column;
  display: none;
  position: absolute;
  padding: calc(3 * var(--base-spacing));
  z-index: 2;
}

.dropdown-menu > *:not(:last-child) {
  margin-bottom: calc(2 * var(--base-spacing));
}

.dropdown-menu.expanded {
  display: flex;
}

/* version dropdown */
#version-dropdown {
  top: calc(6 * var(--base-spacing));
  left: calc(19 * var(--base-spacing));
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy