Gitlab wide screen

Adapt gitlab layout to wide screens. Please add your own domain if you use on-premise server

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey, Greasemonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

You will need to install an extension such as Tampermonkey to install this script.

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्क्रिप्ट व्यवस्थापक एक्स्टेंशन इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्क्रिप्ट व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्टाईल व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

/* ==UserStyle==
@name         Gitlab wide screen
@description  Adapt gitlab layout to wide screens. Please add your own domain if you use on-premise server
@author       V1rgul (https://github.com/V1rgul)
@license      CC BY-NC - Creative Commons Attribution-NonCommercial
@version 0.0.1.20200814213543
@namespace https://greasyfork.org/users/676264
==/UserStyle== */

@-moz-document domain("gitlab.com")
{
  .container-limited
  {
    max-width: none !important;
  }

  .commit
  {
    position: relative;
  }

  .commit .avatar-cell
  {
    position: absolute;
    left: 240px;
  }

  .commit .commit-detail .commit-content
  {
    position: absolute;
    left: 286px;
  }

  .commit .commit-detail .commit-actions
  {
    position: relative;
    padding-left: 36px;
  }

  .commit .commit-detail .commit-actions .ci-status-link
  {
    position: absolute;
    left: 0;
  }

  .commit .commit-detail .commit-actions .ci-status-link .svg
  {
    width: 24px;
    min-width: 24px;
  }

  .commit.gl-responsive-table-row
  {
    position: relative;
  }

  .commit.gl-responsive-table-row > *
  {
    /*flex-grow: 0;*/
    width: auto;
    max-width: none;
    flex-basis: auto;
  }

  .commit.gl-responsive-table-row .commit-link
  {
    margin-right: 16px;
  }

  .commit.gl-responsive-table-row > *:nth-child(4)
  {
    flex-grow: 1;
  }

  .commit.gl-responsive-table-row .stage-cell
  {
    width: 160px;
  }

  .commit.gl-responsive-table-row .pipelines-time-ago
  {
    margin-right: 200px;
    width: 140px;
  }

  .commit.gl-responsive-table-row .pipeline-actions
  {
    position: absolute;
    right: 0;
  }

  .issuable-info-container
  {
    flex-direction: row-reverse;
    /*justify-content: flex-start;*/;
  }

  .issuable-info-container .issuable-meta
  {
    flex-grow: 0 !important;
    margin-right: 32px;
  }
}