toolkit/content/widgets/moz-input-folder/moz-input-folder.css

Propagation: 100%

Back to Home
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

@import url("chrome://global/content/elements/moz-input-text.css");

:host {
  --input-folder-space-inline: var(--space-medium);
  width: 100%;
}

#input {
  min-width: var(--input-folder-min-width);
  max-width: var(--input-folder-max-width);
}

.container {
  display: flex;
  align-items: flex-end;
  gap: var(--input-folder-space-inline);
}
Back to Home