Edit

kmx.io/kmxgit/assets/css/app.scss

Branch :

  • assets/css/app.scss
  • /* This file is for your main application CSS */
    @import "../node_modules/bootstrap/scss/bootstrap.scss";
    @import "../node_modules/font-awesome/scss/font-awesome.scss";
    
    @import "./flash.scss";
    
    /* user */
    textarea#user_description,
    textarea#organisation_description,
    textarea#repository_description {
        min-height: 10em;
    }
    textarea#user_ssh_keys {
        font-family: monospace;
        min-height: 20em;
        overflow-x: scroll;
        overflow-y: scroll;
    }
    pre.ssh_keys {
        max-width: 20em;
        white-space: pre-wrap;       /* Since CSS 2.1 */
        white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
        white-space: -pre-wrap;      /* Opera 4-6 */
        white-space: -o-pre-wrap;    /* Opera 7 */
        word-wrap: break-word;       /* Internet Explorer 5.5+ */
    }
    
    /* repository */
    #repo_title {
        a {
            text-decoration: none;
            color: black;
        }
        a:hover {
            color: blue;
        }
    }
    .file-content {
        border: solid 1px #ccc;
        padding: 1.5em;
    }
    
    .invalid-feedback {
        display: inherit;
    }
    
    /* LiveView specific classes for your customization */
    .phx-no-feedback.invalid-feedback,
    .phx-no-feedback .invalid-feedback {
      display: none;
    }
    
    .phx-click-loading {
      opacity: 0.5;
      transition: opacity 1s ease-out;
    }
    
    .phx-disconnected{
      cursor: wait;
    }
    .phx-disconnected *{
      pointer-events: none;
    }
    
    .phx-modal {
      opacity: 1!important;
      position: fixed;
      z-index: 1;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: rgb(0,0,0);
      background-color: rgba(0,0,0,0.4);
    }
    
    .phx-modal-content {
      background-color: #fefefe;
      margin: 15vh auto;
      padding: 20px;
      border: 1px solid #888;
      width: 80%;
    }
    
    .phx-modal-close {
      color: #aaa;
      float: right;
      font-size: 28px;
      font-weight: bold;
    }
    
    .phx-modal-close:hover,
    .phx-modal-close:focus {
      color: black;
      text-decoration: none;
      cursor: pointer;
    }