generated from hackforla/.github-hackforla-base-repo-template
    
        
        - 
          
- 
                Notifications
    You must be signed in to change notification settings 
- Fork 97
Convert Events.js to MUI Components #1869
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
          
     Merged
      
      
            sasszz
  merged 11 commits into
  hackforla:development
from
sasszz:lucie/mui-1711-events-js-update
  
      
      
   
  May 20, 2025 
      
    
  
     Merged
                    Changes from all commits
      Commits
    
    
            Show all changes
          
          
            11 commits
          
        
        Select commit
          Hold shift + click to select a range
      
      59ee1ad
              
                Init commit
              
              
                sasszz 5645472
              
                Removed unused CSS and added error states
              
              
                sasszz 9cfa12b
              
                Fix null error
              
              
                sasszz 147618c
              
                Fix Full width CSS
              
              
                sasszz b887301
              
                Merge branch 'development' into lucie/mui-1711-events-js-update
              
              
                sasszz cbcb3fa
              
                Remove redirect
              
              
                sasszz 6dc7124
              
                Merge branch 'lucie/mui-1711-events-js-update' of https://github.com/…
              
              
                sasszz f981d00
              
                Remove useAuth
              
              
                sasszz 194e3e7
              
                Merge branch 'development' into lucie/mui-1711-events-js-update
              
              
                sasszz f5dd4db
              
                Added back padding: 0.3em;
              
              
                sasszz 8b3a693
              
                Merge branch 'development' into lucie/mui-1711-events-js-update
              
              
                sasszz File filter
Filter by extension
Conversations
          Failed to load comments.   
        
        
          
      Loading
        
  Jump to
        
          Jump to file
        
      
      
          Failed to load files.   
        
        
          
      Loading
        
  Diff view
Diff view
There are no files selected for viewing
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              | Original file line number | Diff line number | Diff line change | 
|---|---|---|
| @@ -1,104 +1,65 @@ | ||
| .list-event-container { | ||
| display: -webkit-box; | ||
| display: -ms-flexbox; | ||
| display: flex; | ||
| -webkit-box-orient: vertical; | ||
| -webkit-box-direction: normal; | ||
| -ms-flex-direction: column; | ||
| flex-direction: column; | ||
| -webkit-box-pack: justify; | ||
| -ms-flex-pack: justify; | ||
| justify-content: space-between; | ||
| } | ||
|  | ||
| .list-event-headers { | ||
| display: -webkit-box; | ||
| display: -ms-flexbox; | ||
| display: flex; | ||
| -webkit-box-orient: vertical; | ||
| -webkit-box-direction: normal; | ||
| -ms-flex-direction: column; | ||
| flex-direction: column; | ||
| } | ||
|  | ||
| .event-name { | ||
| font-size: 15px; | ||
| margin: 2px 0px; | ||
| border: 2px black solid; | ||
| border-radius: 5px; | ||
| padding: 0.3em; | ||
| &:hover { | ||
| background-color:lightgrey; | ||
| font-size: 15px; | ||
| margin: 2px 0px; | ||
| border: 2px black solid; | ||
| border-radius: 5px; | ||
| padding: 0.3em; | ||
| &:hover { | ||
| background-color: lightgrey; | ||
| cursor: pointer; | ||
| } | ||
| } | ||
|  | ||
| .event-info { | ||
|  | ||
| } | ||
|  | ||
| .event-info-container { | ||
|  | ||
| } | ||
|  | ||
| .event-info-wrapper { | ||
| display: -webkit-inline-box; | ||
| display: -ms-inline-flexbox; | ||
| display: inline-flex; | ||
| -webkit-box-align: center; | ||
| -ms-flex-align: center; | ||
| align-items: center; | ||
| margin: 6px 0px; | ||
| } | ||
|  | ||
| .event-details-container { | ||
|  | ||
| } | ||
|  | ||
| .event-info-text { | ||
| margin: 0px 12px 0px; | ||
| display: -webkit-inline-box; | ||
| display: -ms-inline-flexbox; | ||
| display: inline-flex; | ||
| -webkit-box-align: center; | ||
| -ms-flex-align: center; | ||
| align-items: center; | ||
| margin: 6px 0px; | ||
| } | ||
|  | ||
| .events-list{ | ||
| height: 100%; | ||
| position: relative; | ||
| overflow: auto; | ||
|  | ||
| .add-event-btn { | ||
| position: sticky; | ||
| bottom: 0; | ||
| display: flex; | ||
| justify-content: flex-end; | ||
| .add-event-link{ | ||
| background: white; | ||
| border-radius: 10px; | ||
| display: flex; | ||
| align-items: center; | ||
| .events-list { | ||
| height: 100%; | ||
| position: relative; | ||
| overflow: auto; | ||
| .add-event-btn { | ||
| position: sticky; | ||
| bottom: 0; | ||
| display: flex; | ||
| justify-content: flex-end; | ||
| .add-event-link { | ||
| background: white; | ||
| border-radius: 10px; | ||
| display: flex; | ||
| align-items: center; | ||
|  | ||
| /*animation taken from stackoverflow */ | ||
| overflow: hidden; | ||
| width: 40px; | ||
| -webkit-transition: width .3s; | ||
| transition: width .3s; | ||
| transition-timing-function: ease-in-out; | ||
| white-space: nowrap; | ||
| svg { | ||
| width: 2em; | ||
| height: 2em; | ||
| } | ||
| .add-event-link-text{ | ||
| display: none; | ||
| color: rgb(250, 17, 79); | ||
| margin-left: 10px; | ||
| } | ||
| } | ||
| .add-event-link:hover { | ||
| width: 126px; | ||
| -webkit-transition: width .3s; | ||
| transition: width .3s; | ||
| transition-timing-function: ease-in-out; | ||
| } | ||
| .add-event-link:hover .add-event-link-text{ | ||
| display: inline-block; | ||
| } | ||
| /*animation taken from stackoverflow */ | ||
| overflow: hidden; | ||
| width: 40px; | ||
| -webkit-transition: width 0.3s; | ||
| transition: width 0.3s; | ||
| transition-timing-function: ease-in-out; | ||
| white-space: nowrap; | ||
| svg { | ||
| width: 2em; | ||
| height: 2em; | ||
| } | ||
| .add-event-link-text { | ||
| display: none; | ||
| color: rgb(250, 17, 79); | ||
| margin-left: 10px; | ||
| } | ||
| } | ||
| .add-event-link:hover { | ||
| width: 126px; | ||
| -webkit-transition: width 0.3s; | ||
| transition: width 0.3s; | ||
| transition-timing-function: ease-in-out; | ||
| } | ||
| .add-event-link:hover .add-event-link-text { | ||
| display: inline-block; | ||
| } | ||
| } | ||
| } | ||
      
      Oops, something went wrong.
        
    
  
  Add this suggestion to a batch that can be applied as a single commit.
  This suggestion is invalid because no changes were made to the code.
  Suggestions cannot be applied while the pull request is closed.
  Suggestions cannot be applied while viewing a subset of changes.
  Only one suggestion per line can be applied in a batch.
  Add this suggestion to a batch that can be applied as a single commit.
  Applying suggestions on deleted lines is not supported.
  You must change the existing code in this line in order to create a valid suggestion.
  Outdated suggestions cannot be applied.
  This suggestion has been applied or marked resolved.
  Suggestions cannot be applied from pending reviews.
  Suggestions cannot be applied on multi-line comments.
  Suggestions cannot be applied while the pull request is queued to merge.
  Suggestion cannot be applied right now. Please check back later.
  
    
  
    
Uh oh!
There was an error while loading. Please reload this page.