Skip to content
代码片段 群组 项目
该项目从 https://gitlab.com/gitlab-org/gitlab.git 镜像。 拉取镜像更新于
  1. 4月 24, 2024
  2. 4月 23, 2024
  3. 4月 22, 2024
  4. 4月 20, 2024
  5. 4月 18, 2024
  6. 4月 17, 2024
  7. 4月 16, 2024
  8. 4月 15, 2024
  9. 4月 12, 2024
  10. 4月 11, 2024
  11. 4月 10, 2024
    • Lukas Eipert's avatar
      Migrate border-style utils to tailwind · bbef45fe
      Lukas Eipert 创作于
      Tailwind doesn't allow to individually control the styles of borders
      (bottom, left, right, top). We use those utils, so let's move them to
      our custom list of utility definitions.
      
      Furthermore we make use of the `@layer component` and `@layer utilities`
      for our custom component / utility definition, so that tailwind can
      properly prune those classes in the future.
      bbef45fe
    • Lukas Eipert's avatar
      Ensure css_in_js file is created during dev · 46886599
      Lukas Eipert 创作于
      Once the vite server starts, we compile tailwind_all_the_way once in
      order to generate the css_in_js file.
      
      I cannot wait that we get rid of that file...
      46886599
    • rkumar555's avatar
      Fix the elastic migration create script · 63882945
      rkumar555 创作于
      63882945
  12. 4月 09, 2024
  13. 4月 05, 2024
    • Lukas 'ai-pi' Eipert's avatar
      Create extraction script for utility classes · 7bcb70e6
      Lukas 'ai-pi' Eipert 创作于
      This is the first step towards generating all utility classes with
      tailwind. The idea behind this is the following:
      
      Parse all utility classes being provided by @gitlab/ui into a JSON
      object where each class is represented as something like this:
      
      ```
      '.bg-gray-10': {
        'background-color': 'var(--gray-10, #fbfafd)',
      },
      ```
      
      We then let tailwind generate all the utilities and compare the class
      definitions above with the class definitions in @gitlab/ui. They can
      fall into four categories:
      
      - exact matches: The tailwind generated class matches @gitlab/ui 1:1
      - potential mismatches: The tailwind generated class mismatches
        significantly. This can be okay or we may need some adjustments to the
        tailwind config.
      - hardcoded colors: Some of the utility classes have hard coded colors
        which the conversion script is not able to resolve to a CSS variable.
      - safe to use legacy utils: These utils have no overlap with tailwind at
        all. The class names completely differ. This means we can feed the
        definitions above into tailwind, so that tailwind is able to generate
        the classes
      
      As part of the conversion certain aspects are normalized, for example
      colors like `#fbfafd` are normalized to `var(--gray-10, #fbfafd)`, but
      only if the class name contains `gray-10`.
      
      Furthermore we currently check-in two files that later will be
      git-ignored:
      1. config/helpers/tailwind/css_in_js.js – containing the css-in-js
         definitions for tailwind to generate the legacy utils with tailwind
      2. config/helpers/tailwind/all_utilities.haml – containing a list of all
         utility classes, so that tailwind is able to generate _all utilities_
         and not just the used ones
      7bcb70e6
  14. 4月 04, 2024
  15. 4月 03, 2024
  16. 3月 29, 2024
    • Paul Gascou-Vaillancourt's avatar
      Creates the `tailwind_all_the_way` feature flag · 5e429baf
      Paul Gascou-Vaillancourt 创作于
      This creates the `tailwind_all_the_way` feature flag and lays the
      groundwork for what we'll need to take advantage of it:
      
      * GitLab UI utitilies are moved to their own stylesheet so that we can
        easily switch between the legacy library and the Tailwind one.
      * We create the "all the way" Tailwind stylesheet and config. These
        compile the `app/assets/builds/tailwind_all_the_way.css` CSS file
        which gets included when the feature flag is enabled. For now, this
        file is unreliable as it requires the second iteration where we'll
        create the proper CSS in Js config for Tailwind to generate our legacy
        utils.
      * The Tailwind compiler is updated to compile both Tailwind CSS bundles.
      5e429baf
  17. 3月 28, 2024
  18. 3月 27, 2024
  19. 3月 25, 2024
  20. 3月 22, 2024
  21. 3月 21, 2024
    • Chad Woolley's avatar
      Fix specs · 4449a4b8
      Chad Woolley 创作于
      - Enable ee/spec/features/remote_development/workspaces_dropdown_group_spec.rb
        even though it's still failing
      4449a4b8
    • Andrejs Cunskis's avatar
      Run full suite for cng pipeline · 8700d372
      Andrejs Cunskis 创作于
      Do not report cng instance failures
      
      Reduce parallel job count
      
      Run cng tests on all schedule
      
      Use image with git lfs
      
      Add pre-receive hook needed for tests
      
      Improve install script logging
      
      Quarantine conan test in cng
      
      Set application cache setting to 0
      8700d372
    • ddieulivol's avatar
      Change the limits, not the requests · cb374cd1
      ddieulivol 创作于
      cb374cd1
  22. 3月 20, 2024
  23. 3月 19, 2024
  24. 3月 09, 2024
加载中